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