#include <stdio.h>

int main()
{
    short int n,x;
    scanf("%hd",&n);
    scanf("%hd",&x);
    printf("%d %d", n, x);
    return 0;
}