You are on page 1of 1

// ConsoleApplication5.cpp : Defines the entry point for the console application.

//

#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{

int a;
char b;

cin>> a;
cin >> b;

cout << "integer " << a << "character " << b << endl;

system("pause");
return 0;
}

You might also like