fork(1) download
  1. num1 = 1.5
  2. num2 = 6.3
  3. sum = num1 + num2
  4. print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Success #stdin #stdout 0.07s 14152KB
stdin
Standard input is empty
stdout
The sum of 1.5 and 6.3 is 7.8