#include<iostream> using namespace std; int main(){ int a[10086],b,j; for(int i=1;i<=10;i++){ cin>>a[i];//TODO } cin>>b; //陶陶的身高 for(int x=1;x<=10;x++){ if(a[x]<=b) { j=j+1; } else{ if(a[x]<=b+30){ j=j+1; } return 0; } } cout<<j; }