Guest User

Untitled

a guest
May 30th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. open "sum.in" for input as #1
  2. open "sum.out" for output as #2
  3.  
  4. input #1,a,b
  5. print #2,a+b
  6.  
  7. close #1
  8. close #2
Add Comment
Please, Sign In to add comment