#K63212. Determine Age Category

    ID: 31704 Type: Default 1000ms 256MiB

Determine Age Category

Determine Age Category

This problem requires you to determine the age category based on a given integer input that represents a person's age. A person is considered an Adult if their age is 18 or more, and Underage otherwise.

You are required to read the input from standard input (stdin) and print the correct string to standard output (stdout). Ensure your solution handles the input correctly and outputs exactly as specified.

inputFormat

A single integer n (0 ≤ n ≤ 150) representing a person's age.

outputFormat

Print "Adult" if n is 18 or older; otherwise, print "Underage".## sample

17
Underage