切上水题了(doge
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
int ans = 0;
int n;
scanf("%d", &n);
while(n -- ){
int x;
scanf("%d",&x);
if(x > 90 && x < 180) ans++;
}
printf("%d",ans);
return 0;
}