#include <iostream>
using namespace std;

int main() {
	int a ;
cin>>a;
if(a)int b = 1;
else char b ='a';
cout<<b;
	return 0;
}