#include <iostream>
using namespace std; // consider removing this line in serious projects

int main() {
    char c[10]= "박헌성";
    cout<<c[0]<<endl;
	return 0;
}