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

int main() {
	// your code goes here
	string newString = "ABC";
cout << newString[0] << endl;
cout << newString[1] << endl;
	return 0;
}