num_cents = int(input())
# Complete the following to output 'dollar or more' if the value of num_cents is at least a dollar.
if num_cents >= 100:
print('dollar or more')
a. dollar or more
b. less than a dollar
c. 100 cents
d. None of the above