Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. main()
  2. {
  3. fflush( stdin );
  4. int a,b;
  5. scanf("%d,%d",&a,&b);
  6. printf("%d,%d",a,b);
  7. }
  8.  
  9. root@debian:/home/wis# ./test
  10. 2
  11. 2,0root@debian:/home/wis#
  12.  
  13. scanf("%d,%d",&a,&b);
  14.  
  15. scanf("%d %d",&a,&b);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement