# Arup Guha
# 1/13/2020
# Converts Inches to Feet and Inches

# Get user input.
heightInInches = int(input("How tall are you in inches?\n"))

# Split this into feet and inches via int division and mod.
feet = heightInInches//12
inches = heightInInches%12

# Print the result.
print("You are ", feet,"' ",inches,"\".", sep="")
