#include "stdafx.h" #include <iostream> using namespace std; int main() { int x = 5; int y = 7; cout << "\n"; cout << x + y << " " << x * y; cout << "\n"; cin >> y; // насладись консолью -) return 0; }
#include <iostream> using namespace std; int main() { int x = 5; int y = 7; cout << "\n"; cout << x + y << " " << x * y; cout << "\n"; return 0; }