#include <iostream>
   using namespace std;
   
    int 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.";

      return 0; // nothing went wrong
      }
