#include<stdio.h>
int main()
{
    int a=10;
    int b=90;
    scanf("%d",&a);
    scanf("%d",&b);
    printf("%d%d" &a,&b);
    return 0;
}