Advertisement
Josif_tepe

Untitled

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