// prog.cpp : Defines the entry point for the console application. #include "stdafx.h" #include using namespace std; int main() { cout << "Hello \n there! \"a\" is a letter" << endl << endl; cout << "two plus three is: " << 6 << endl; cout << "two plus three is: " << "2+3" << endl; cout << "two plus three is: " << 2 + 3 << endl; return 0; }