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