Created
July 4, 2016 19:22
-
-
Save johnsi15/bb8fdd4ae12865183f543ae4b39d27c3 to your computer and use it in GitHub Desktop.
This file contains 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
# -*- coding: utf-8 -*- | |
print "la suma de dos numeros" | |
a = int(raw_input("numero")) | |
b = int(raw_input("numero")) | |
c = a + b | |
print "la suma es %s" % c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment