write a python program that asks the user for a float number then print the integer values code example
Example: python after division print only number and not float
#normal division
5 / 4
#1.25
#integer division
5 // 4
#1
#normal division
5 / 4
#1.25
#integer division
5 // 4
#1