#include <iostream>
#include <fstream>
using namespace std;

int main ()
{
	string id;
	char code;
	cout<<"Enter an integer id: ";
	getline (cin,id);
	cout<<"Enter a code: ";
	cin.get(code);
	cout<<"Output:\n"<<id<<"\t"<<code;
	return 0;
}
