fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int max1, max2, temp, x;
  6.  
  7. cin>>max1>>max2;
  8.  
  9. if(max1<max2){
  10. temp = max1;
  11. max1 = max2;
  12. max2 = temp;
  13. }
  14. if(max2 !=0){
  15. while(cin>>x){
  16. if(x!=0){
  17. if(x>max1){
  18. max2 = max1; max1 = x;
  19. }
  20. if(x> max2 && x < max1){
  21. max2 = x;
  22. }
  23. }
  24. else{
  25. break;
  26. }
  27. }
  28. }
  29. cout<<max2;
  30.  
  31. return 0;
  32. }
Success #stdin #stdout 0s 5284KB
stdin
3 3 3 3 2 0
stdout
3