#include using namespace std; void main () { cout << "Hi there! How old are you?"; int age; cin >> age; if (age > 18) { cout << "Old enough to vote."; } else { cout << "Not old enough to vote."; } cout << age << " is a very good age to be."; }