#include<iostream>
using namespace std;


int main()
{
 // Declare variables
 char country;
 int age;

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


 // Determine if person can drive
 if(country=='G') //Guatemala driving age test
 {
   if(age<16)
     cout << "You cannot drive!\n";
   else
     cout << "You can drive!\n";
 }
 else             // Honduras driving age test
 {
   if(age<18)
     cout << "You cannot drive!\n";
   else
     cout << "You can drive!\n";
 }


 // End program
 return 0;
}