robjaq1092 robjaq1092 05-02-2024 Computers and Technology contestada 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