Advertisement
Josif_tepe

Untitled

Jul 1st, 2025
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5.     int a, b, c;
  6.     scanf("%d%d%d", &a, &b, &c);
  7.    
  8.     int zbir = a + c;
  9.     int proizvod = b * c;
  10.    
  11.     printf("Zbirot e %d\n", zbir);
  12.     printf("Proizvodot e %d\n", proizvod);
  13.     return 0;
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement