#include <iostream>
using namespace std;

int main() {
    int age;

    cout << "How old are you? ";
    cin >> age;

    if (age >= 18) {
        cout << "You are pretty big";
    } else {
        cout << "You are just kid";
    }

    return 0;
}