a=input("enter the 1st value withing 0 to 9:") # set value of a Variable
b=input("Enter the 2nd value withing 0 to 9:") # set value of a Variable
c=int( int (a)+ int (b) ) # add a and b ( a+b)
print ("the valye of addition is :",c) # a ar b er jog fol ekhane dekhaibo
if (c==10): # jodi C er man exactly 10 hoy
print("This condition is true and executed successfully ")
else: # jodi c er man exactly 10 na hoy
print ("This condition is False and failed to exec")
input ("Press any key to continue...")