#include "iostream.h" using namespace std; void output(char a) { cout << a << endl; } int main() { char temp; cin>>temp; output(temp); return 0; }