Programming Pandit

c/c++/c#/Javav/Python


Latest Update

Tuesday, September 15, 2020

Python Program to print the Multiplication and Division by G Krishna Chauhan

Source Code


#Program for Multi. and Div.

num1=int(input("Enter 1st Number"))

num2=int(input("Enter 2nd Number"))

m=num1*num2

d=num1/num2

print("The Mul. of 2 no. are",m)

print("The Div. of 2 no. are",d)


 



No comments:

Post a Comment