Program description:
Python is a very simple and easy to learn programming language in comparison to C. In python we have to do very less code in order to obtain the same output. Here is the python code to add to numbers.
Source Code:
a=int(input("Enter the First Number:") )
b=int(input("Enter the Second Number:"))
sum=a+b
print("The sum of two numbers you entered is",sum);
1 Comments
Great I think it's easy to learn
ReplyDelete