Запишите код программы с помощью операторов интегрированной среды
#include
using namespace std;
int main() {
int x = 5, y = -6,z;
if (x > y) {
z = x + y;
}
else {
z = y - x;
cout
system("pause");
return 0;