#include<stdio.h>
int main()
{
    int A;
    int B;
    scanf("%d", &A);
    scanf("%d", &B);
    printf("%d%d", &A,);
    return 0;
}