Advertisement
Josif_tepe

Untitled

Mar 23rd, 2025
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int zbir(int a, int b) {
  5.     return a + b;
  6. }
  7.  
  8. int main() {
  9.     int a, b;
  10.     cin >> a >> b;
  11.    
  12.     cout << zbir(a, b) << endl;
  13.    
  14.     return 0;
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement