Advertisement
AndreyKlipikov

A. A + B

Sep 20th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <iostream>
  3.  
  4. int main()
  5. {
  6.     int a, b;
  7.     scanf("%d %d", &a, &b);
  8.     printf("%d", a + b);
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement