#include<stdio.h> int main() { int nums[100]={}; int i=0; while(scanf("%d",&nums[i])!=EOF){ printf("%d ",nums[i]); i++; } return 0; }