# Arup Guha
# 4/27/2020
# Solution to COP 2930 Final Exam Part B: Problem 1 - Money

# Prompt user.
cents = int(input("How many cents do you have?\n"))

# Integer division and mod give us the proper conversion values.
print("That is",cents//100,"dollars and",cents%100,"cents.")
