#include <iostream>
#include <limits>
using namespace std;

int main()
{
  	int id;   
 	char code;
  
  	cout << "Enter an integer id: ";
  	cin >> id;
  		
	cin.ignore(numeric_limits<streamsize>::max(), '\n');
    cout << "Enter a code: ";
  	cin.get(code);
  
  	cout << "Output\n" << id << "\t" << code;
  	return 0;
}
