Skip to content

Instantly share code, notes, and snippets.

Created April 14, 2016 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/74c9837eaef5fd4777db31cf7d412767 to your computer and use it in GitHub Desktop.
Save anonymous/74c9837eaef5fd4777db31cf7d412767 to your computer and use it in GitHub Desktop.
one_str = input("Enter number here.")
two_str = input("Enter 2nd number here.")
one_int = int(one_str)
two_int = int(two_str)
three_int = one_int + two_int
print(three_int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment