#include <iostream>
#include <vector>
#include <string.h>
#include<stdio.h>
using namespace std;
int main(){
char x;
cin >> x;
cout << x;
}
This is a C++ code that reads a single character input from the user and then prints it to the console.