program shashwat
program shashwat
b=4
c=5
print("the product is:","",a*b*c)
2)a=int(input("enter a number"))
b=int(input("enter a number"))
c=int(input("enter a number"))
print("the product is","",a*b*c)
6)a=float(input("a's value"))
b=float(input("b's value"))
c=0
c=a
a=b
b=c
print("a is:",a)
print("b is :",b)
10)a=int(input("enter a number"))
if a%2==0:
print("the number is even")
else:
print("the number is odd")
12)for i in range(1,11):
print(7,"*",i,"=",7*i)
sum = 0
sum = 0