#!/usr/bin/python3 # -*- coding: utf-8 -*- """ elseif is optional, with any number of them being OK else is optional, though it must be the last block Conditional expression’s operators: (), ==, !=, , =, and, or, not Precedence (high to low): (), not, * / % + -, < >=, == !=, and, or """ x: int = int(input()) y: int = int(input()) z: int = int(input()) if (y - z) < 10: print("Close") if x < 10: print("Small") # Nested conditions if x > 8: print("nine") elif x < 20: print("Med") else: print("Large")