fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int x,y;
  5.  
  6. int main() {
  7.  
  8. cin>>x>>y;
  9. if (x>y) {cout<<"x<y con x= "<<x<< " y= "<<y<<endl;}
  10. else { cout<< "y>x con x= "<<x<<"y= "<<y<<endl;}
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5320KB
stdin
25 25
stdout
y>x con x= 25y= 25