#include <iostream>
using namespace std;

// reminder- special character '\n' is the same as endl;
// reminder- think of cout as 'show to screen'

int main() {
	
	int apples; 	//int variable called apples
	apples = 5; 	//storing a intenger of 5 into apples
	
	cout << "How many apples do we have?" << endl;
	cout << "I believe we have " << apples << " apples.\n"; //cout our variable
	
	apples = 2; 	//storing a intenger of 2 into apples changing its value
	cout << "Can you double check please?\n";
	cout << "ahh I told you, we have " << apples << " apples! ";
	cout << "Wait what??" <<endl;
	
	return 0;
}// Leo Garza 12/12/2018