Guest User

Untitled

a guest
Oct 22nd, 2017
77
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. #include <stdlib.h>
  3.  
  4. int main() {
  5. int i = 0, n[100];
  6.  
  7. while (scanf("%d", &n[i++]) != EOF) ; i--;
  8.  
  9. for (int j = 0; j < i; j++)
  10. printf("%d ", n[j]);
  11.  
  12. return 0;
  13. }
Add Comment
Please, Sign In to add comment