Questions


December 2023 1 1 Report
write a program in python to find quotient and remainder by dividing bigger number to smaller number..
the answer is:
b=int(input("give bigger number:"))
s=int(input("give smaller number:"))
q=b//s
r=b%s
print("quotient:",q)
print("remainder:",r)
if anything is incorrect please correct me please​

Answers & Comments


Add an Answer


Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Helpful Social

Copyright © 2024 EHUB.TIPS team's - All rights reserved.