Programming Examples
Python program to print quotient
Program to print quotient.
Solution
a=int(input("Enter the first number :"))
b=int(input("Enter second number :"))
print ("Quotient :" , a/b)
Output/ Explanation:
Enter the first number :5
Enter second number :2
Quotient : 2.5