Guest User

Untitled

a guest
Feb 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /* add c headers if necessary*/
  2. #include <stdio.h>
  3. /* Include other headers as needed */
  4. int main()
  5. {
  6.  
  7. /* Enter your code here. Read input from STDIN. Print output to STDOUT */
  8. int a,b;
  9. scanf("%d%d",&a,&b); // requires user input
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment