#include<stdio.h> #include<string.h> int main(){ char s[10001]; scanf("%s",s); int i=0; int n=strlen(s); while(i<n) { printf("%c",s[i]); i++; } }