#include<stdio.h> void main() { int i; char c[5]; for(i=0;i<5;i++) scanf("%c",c[i]); for(i=0;i<5;i++) printf("%c",c[i]); }