#include <iostream>
#include <string>
using namespace std;

int main() {
	string s="абв";
	char a = s[0];
	cout << a;
	return 0;
}