Computer Science, asked by akshatvashisht6, 7 months ago

WAP to enter two numbers then display the remainder? in python​

Answers

Answered by Anonymous
2

Answer:

hi..

Explanation:

a=int(input('enter the first number'))

b=int(input('enter the second number'))

remainder=a%b

print("remainder is ",remainder)

hope it helps you ☺️

Answered by anindyaadhikari13
1

Question:-

  • WAP in python to enter two numbers then display the remainder.

Program:-

x=int(input("Enter first number: "))

y=int(input("Enter second number: "))

print("Remainder is: ",x%y)

Similar questions