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