// This program counts to an upper limit #include using namespace std; int main() { int num = 10; cout << num << endl; num++; return 0; }