Advertisement
mhdew

File Practice

Jun 7th, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. freopen("input.txt", "r", stdin);
  6. freopen("output.txt", "w", stdout);
  7. int x, y;
  8. scanf("%d %d", &x,&y);
  9.  
  10. printf("%d\n", x+y);
  11.  
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement