Based on the given code:
```
age = 15
age_to_drive = 16
if age == age_to_drive:
print(age == age_to_drive)
print("I drove before 15")
```
The output will be:
b. False
This is because the condition `age == age_to_drive` is not true (15 is not equal to 16), so the lines inside the 'if' statement will not be executed.