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