Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main()
  4. {
  5. int x, y, z;
  6. scanf("%d", &x);
  7. scanf("%d", &y);
  8. z = x + y;
  9. printf("%d", &z);
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement