Computer Science, asked by harshitg44377, 2 days ago

write a program on python​

Answers

Answered by sakthivelsangeetha
0

Answer:

# Python3 program to add two numbers

num1 = 15

num2 = 12

# Adding two nos

sum = num1 + num2

# printing values

print("Sum of {0} and {1} is {2}"

Answered by pratham4749
0

Answer:

this is to multiple to integer number

Explanation:

a = int(input (" first number"))

b = int(input("second number"))

c = a * b

print(c)

hope it will help you

Similar questions