Write a python program to find sum of two numbers using command line arguments.
1)a) write a python program to find sum of two numbers using command line
arguments.
n1=int(input("Enter the number 1 value:"))
n2=int(input("Enter the number 2 value:"))
sum=n1+n2
print("The sum of 2 values is",sum)
Comments
Post a Comment