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