Advertisement
MeehoweCK

Untitled

Oct 28th, 2023
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.     int a{}, b{};
  5.     std::cout << "Podaj dwie liczby calkowite: ";
  6.     std::cin >> a >> b;     // podanie wartości z klawiatury (z konsoli) do zmiennych a i b
  7.     std::cout << "Wynikiem dzialania " << a << " + " << b << " jest liczba " << a + b << std::endl;
  8.  
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement