fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int t,i=0, num;
  6. scanf("%d", &t);
  7. while(i<t)
  8. {
  9. scanf("%d",&num);
  10. printf("%d\n",num);
  11. i++;
  12. }
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2164KB
stdin
4
1
2
5
3
stdout
1
2
5
3