Created
April 14, 2016 07:38
-
-
Save anonymous/74c9837eaef5fd4777db31cf7d412767 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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