write a program to accept any number and print the value of remainder dividing it by 3
Answers
Answered by
0
Answer:
a=int(input("Enter the first number: "))
a=int(input("Enter the first number: "))b=int(input("Enter the second number: "))
a=int(input("Enter the first number: "))b=int(input("Enter the second number: "))quotient=a//b
a=int(input("Enter the first number: "))b=int(input("Enter the second number: "))quotient=a//bremainder=a%b
a=int(input("Enter the first number: "))b=int(input("Enter the second number: "))quotient=a//bremainder=a%bprint("Quotient is:",quotient)
a=int(input("Enter the first number: "))b=int(input("Enter the second number: "))quotient=a//bremainder=a%bprint("Quotient is:",quotient)print("Remainder is:",remainder)
Similar questions