fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int x,n,a,licz=0;
  7. while(cin>>x){
  8. licz = 0;
  9. cin>>n;
  10. while(n--){
  11. cin>>a;
  12. if(a==x){
  13. licz++;
  14. }
  15.  
  16. }
  17. cout<<licz<<endl;
  18. }
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5284KB
stdin
1 3 11 1 1
1 3 11 9 1
stdout
2
1