Write a program using integers user_num and x as input, and output user_num divided by x three times

it’s shockingly much simpler than y’all are making it. The program wants a straight forward answer.

user_num = int(input())
x = int(input())

print (user_num // x , user_num // x // x , user_num // x// x // x)

Leave a Comment