#include <stdio.h>
int sum(){
    return "a";
}
int main() {
    printf("%c",sum());
   return 0;
}