Python Programs
Python Programs
Program Output
# To find the sum of numbers(interactive mode) 66
>>> a=10
>>> b=27
>>> c=29
>>> s=a+b+c
>>> print(s)
Script mode
# To find the sum of numbers 63
a=14
b=26
c=23
s=a+b+c
print(s)