Ruslan_nig

Untitled

Nov 12th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int a, b;//это объявление переменных
  6.     cin >> a >> b;
  7.     cout << a + b << endl << a - b << endl << a * b << endl << a % b;
  8.     system("pause");
  9.     return 0;
  10. }
Add Comment
Please, Sign In to add comment