Advertisement
Josif_tepe

Untitled

Feb 28th, 2024
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int a, b;
  5.     scanf("%d", &a);
  6.     scanf("%d", &b);
  7.  
  8.     int zbir = a + b;
  9.     printf("%d\n", zbir);
  10.  
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement