1.
PYTHON PROGRAMS
#program to print full name
firstname=input("enter firstname")
lastname=input("enter lastname")
print("Fullname is ",firstname+lastname)
2.
# Program to find the sum of two numbers
n1=10
n2=20
result=n1+n2
print("sum of numbers is ", result)
3.
#PROGRAM TO ADD TWO NUMBERS
x=int(input("enter x"))
y=int(input("enter y"))
z=x+y
print("sum is ", z)
4.
#PROGRAM TO ADD TWO NUMBERS
x=int(input("enter first value"))
y=int(input("enter second value"))
z=x+y
print("sum of", x ,"and", y ,"is", Z)
5.
x=int(input("enter first value"))
y=int(input("enter second value"))
z=x*y
print(“Product of", x ,"and", y ,"is", Z)
6.
#PROGRAM TO SUBTRACT TWO NUMBERS
x=int(input("enter first value"))
y=int(input("enter second value"))
z=x-y
print(“Difference between", x ,"and", y ,"is", Z)