# -*- coding: utf-8 -*-
"""
Created on Sat Sep 12 10:28:28 2020

@author: Sim
"""

# ifelse1.py

age = int(input("Enter your age: "))

if age >= 19:
    print("Welcome to Club!")
else:
    print("Sorry!! You are underaged!")