#include<stdio.h>
int main()
{
    char a,b;
    scanf("%c\n %c\n",&a,&b);
    printf("%.1c \n",a,b);
    return 0;
}