/* Lecture Code 0.0
 *
 * Basic code to read in from cin.  Note that this doesn't perform any error-handling!
 */
 
#include <iostream>
using namespace std;

int main()
{
	int myInt;
	double myDouble;
	string myString;

	cout << "Please enter an integer: ";
	cin >> myInt;
	
	cout << "Please enter a double: ";
	cin >> myDouble;
	
	cout << myInt << endl;
	cout << myDouble << endl;
	
	return 0;
}