Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Addition of two numbers in Python

+ Operator is used to perform addition and variables can be assigned directly with an equal to sign

a = 10;
b = 20;
c = a+b;
print c;


Output
30