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