Program to wap and daf to input two numbers and calculate their quotient and remainder
Answers
Answered by
1
Answer:
#Python
Explanation:
a = int(input("nter no. "))
b= int(input("second ni."))
print(a/b)
print(a%b)
Similar questions