Skip to content

Instantly share code, notes, and snippets.

@johnsi15
Created July 4, 2016 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnsi15/bb8fdd4ae12865183f543ae4b39d27c3 to your computer and use it in GitHub Desktop.
Save johnsi15/bb8fdd4ae12865183f543ae4b39d27c3 to your computer and use it in GitHub Desktop.
# -*- 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