Josif_tepe

Untitled

Dec 15th, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.    
  6.     cout << "Vnesete 2 broja: ";
  7.    
  8.     int a;
  9.     int b;
  10.    
  11.     cin >> a;
  12.     cin >> b;
  13.    
  14.     cout << "Zbir: " << a + b << endl;
  15.     cout << "Razlika: " << a - b << endl;
  16.     cout << "Proizvod: " << a * b << endl;
  17.     cout << "Kolicnik: " << a / b << endl;
  18.    
  19.    
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment