#include<stdio.h>
int main()
{
    int i,t;
    char c;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%s",&c);
        printf("%c",c);
    }
    return 0;
}
inside the while loop why it skips some of values. but it works okay with integer values
 
     
     
    