Python program to print quotient


Write a program in python to print quotient

------------------------------------------------

n1=int(input("Enter the first number :"))

n2=int(input("Enter the second number :"))

print ("Quotient is :" , n1/n2)

------------------------------------------------

Output :-

Enter the first number :15

Enter the second number :4

Quotient is : 3.75

Post a Comment

0 Comments