My omnium-gatherom of scripts and source code.
at main 6 lines 97 B view raw
1def sum(x, y): 2 return x + y 3 4x = 3 5y = 4 6print("The result of ", x, "+", y, "is", sum(x, y))