#include<stdio.h>
int main(){
    int *p=&a;
    int *p1=&b;
    scanf("%d %d",&a,&b);
    int temp=*p;
    *p=*p1;
    *p1=temp;
    return 0;
}