Computer Science, asked by mdparwezalam692, 10 months ago

Program to wap and daf to input two numbers and calculate their quotient and remainder

Answers

Answered by priyanshu6969
1

Answer:

#Python

Explanation:

a = int(input("nter no. "))

b= int(input("second ni."))

print(a/b)

print(a%b)

Similar questions