Advertisement
mhdew

nadim_1

Aug 13th, 2021
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main(){
  4.  
  5.     int n;
  6.     scanf("%d", &n);
  7.  
  8.     int i, x;
  9.     for(i=0;i<n;i++){
  10.         scanf("%d", &x);
  11.         printf("%d\n", x);
  12.     }
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement