#include<stdio.h> #include<iostream> using namespace std; int main() { int i; cin >> i; int j; cin >> j; i = i + j; j = i - j; i = i - j; cout << i << endl; cout << j << endl; system("pause"); return 0; }
#include<stdio.h> #include<iostream> using namespace std; int main() { int i; cin >> i; int j; cin >> j; i = i + j; j = i - j; i = i - j; cout << i << endl; cout << j << endl; system("pause"); return 0; }