#include<iostream>
using namespace std;
int main() {
int x = 5, y = -6,z;
if (x > y) {
z = x + y;
}
else {
z = y - x;
cout << z;
system("pause");
return 0;
#include<iostream>
using namespace std;
int main() {
int x = 5, y = -6,z;
if (x > y) {
z = x + y;
}
else {
z = y - x;
}
cout << z;
system("pause");
return 0;
}