lab4(92)
#include <iostream>
using namespace std;
int main() {
int x, y, z;
cin>>x>>y;
if(x>y) {
cout<<"x=";
cout<<x;
cout<<"y=";
cout<<y;
} else {
z = x+y;
x = z-x;
y = z-y;
cout<<"x=";
cout<<x;
cout<<"y=";
cout<<y;
}
}INFO