Editor
"""
-   Online compiler to run your python code.
-   Write your python code and press "run" to execute.
-   Use "open" to edit a local file from your system & "download" to save this file to your machine.
"""

def addition(a, b):
    return (a + b)

a = int(input('First number to add: '))
b = int(input('Second number to add: '))

print(f'Adding {a} and {b} yields {addition(a, b)}.')
Output Terminal