Write a python program to integral qotient and remainder of a division:

 # Write a python program to integtral qotient and remainder of

# a division:
num=2500
den=235
qua=num//den
remi=num%den
print(qua,remi)💕💔

Comments

Popular posts from this blog

Write a python script to display the current date and time. First create variables to store date and time, then display date and time in proper format (like: 13-8-2022 and 9:00 PM """