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