#include <iostream> using namespace std; void main() { int num = 0; int a[10]; for (int i = 0; i < 10; i++) { cin >> a[i]; } cout << endl; int x; cin >> x; for (int j = 0; j < 10; j++) { if (x >= a[j]) num++; } cout << endl << num; }