1234567891011
#include <iostream> using namespace std; int main() { char a,b; cin.get(a); cout << a; cin.get(b); cout << b; return 0; }