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