fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int tab[10001];
  5.  
  6. int main() {
  7.  
  8. int n, max=-1, odp;
  9. while(cin >> n) tab[n]++;
  10. for(int i=0;i<=10000;i++) {
  11. if(tab[i]>max) {
  12. max=tab[i];
  13. odp=i;
  14. }
  15. }
  16. cout << odp;
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5284KB
stdin
2 3 4 1 2
stdout
2