write a program to assign two integer 20 and 2 in variable A and B print quotient
Answers
Answered by
0
Explanation:
I am using Python
A = 20
B = 2
print('Quotient of A/B is : ',A/B)
Similar questions