#include<iostream>
using namespace std;

int main()
{
 int age;

 // Get user age
 cout << "What is your age? ";
 cin >> age;

 if (age>=18) // Permit driving if age >= 18
   cout << "You can drive!\n";
 else
   cout << "No driving!\n";

 return 0;
}