#include<stdio.h> int main() { int arr[10] = { 0 }; for (int i = 0; i < 10; i++) { scanf("%d", &arr[i]); printf("%d ", arr[i]); } return 0; }