Sum of Two Values in Python

Sum of Two Values in Python

Open File:
"filename.py"

Code:
i=5;
j=5;

print("Sum : ",i+j);

Run File:
> py filename.py

Comments