#include<iostream>
using namespace std;
{
int i=10;

if (i<12)
{
    cout<<"smaller than 12";
}
else
{
    cout<<"larger than 12";
}
};