#include<stdio.h>
int main(){
    int a,b,c;
    a=1;
    b=0;
    c=1;
    scanf("%d %d %d",&a,&b,&c);
    print("a b c");
    return 0;
}