Advertisement
AndriikoM

Лекція 1, завдання 1

Oct 17th, 2017
70
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.  
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7. int chislo1;
  8. cout << "Vvedite chislo 1:";
  9. cin >> chislo1;
  10.  
  11. int chislo2;
  12. cout << "Vvedite chislo 2:";
  13. cin >> chislo2;
  14.  
  15. cout << "Resultat: " << chislo1+chislo2;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement