Skip to content

Instantly share code, notes, and snippets.

@fud
Created February 28, 2020 05:03
Show Gist options
  • Save fud/59e0432d3dc0d9a4209cad11398a7213 to your computer and use it in GitHub Desktop.
Save fud/59e0432d3dc0d9a4209cad11398a7213 to your computer and use it in GitHub Desktop.
first_number=input('enter the first number ');
second_number=input('enter the second number ');
print(float(first_number) + float(second_number));
billsb@MacBook-Pro  ~/Downloads  python3 numbers.py
enter the first number 1
enter the second number 2
3.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment