#include using namespace std; int main() { cout << "This is an example file" << endl; cout << "I'm going to declare to variables and print them." << endl; int x = 1; int y = 2; cout << "x: " << x << " y: " << y << endl; cout << "Remember to end with semicolons (;)." << endl; return 0; }