read 10 integers from the keyboard in the range of 0-100, and count how many of them are larger than 50 and display the result
#include using namespace std;
int main()
{
int n;
int counter = 0;
for(int i = 0 ; i < 10; ++i)
{
cin >> n;
if(n > 50)
++counter;
}
cout << counter << endl;
return 0;
}