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