#include <stdio.h>

int main(void) {
	printf("%c","abc"[2]);
	return 0;
}
