Advertisement
Avdluna

URI 1003

May 17th, 2015
260
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.  
  5.     int a,b,x;
  6.    
  7.     scanf("%d %d", &a, &b);
  8.    
  9.     x = a+b;
  10.    
  11.     printf("SOMA = %d\n", x);
  12.  
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement