Computer Science, asked by bg100030, 2 months ago

write a program to assign two integer 20 and 2 in variable A and B print quotient​

Answers

Answered by ramapadhye
0

Explanation:

I am using Python

A = 20

B = 2

print('Quotient of A/B is : ',A/B)

Similar questions