Guest User

Untitled

a guest
Oct 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. short a, b, c, d;
  6. scanf("%d%d%d%d", &a, &b, &c, &d);
  7. printf("%dn%dn%dn%d", a, b, c, d);
  8.  
  9. return 0;
  10. }
  11.  
  12. 10 20 30 40
  13. 0
  14. 0
  15. 0
  16. 40
  17. Process returned 0 (0x0) execution time : 3.994 s
  18. Press any key to continue.
Add Comment
Please, Sign In to add comment