#Write a program that reads integers user_num and div_num as input, and outputs user_num divided by 
# div_num three times using floor divisions 

# Get the user input from the user 
user_num = int(input())

#Get the division number from the user 
div_num = int(input())

 floor_division1 = user_num // div_num 
#divided by div_num three times using floor divisions 
 floor_division2 = floor_division1 // div_num 

 floor_division3 = floor_division2 // div_num 

    print(f'{floor_division1}{floor_division2}{floor_division3}')


#Floor division = // (performs an integer floor division)

#Regular division = / (returns a float, even if its a whole number)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: