#include <iostream>
using namespace std;
int main(){
int x,y,z;
x=5;
y=-6;
if(x>y)z=x+y;
else{z=y-x;}
cout << z;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main(){
int x,y,z;
x=5;
y=-6;
if(x>y)z=x+y;
else{z=y-x;}
cout << z;
}