Skip to content

Instantly share code, notes, and snippets.

@brandon22esquivel
Created September 5, 2019 01:23
Show Gist options
  • Save brandon22esquivel/71b25fb6e3b1ec2fe682f7dfcde43d0c to your computer and use it in GitHub Desktop.
Save brandon22esquivel/71b25fb6e3b1ec2fe682f7dfcde43d0c to your computer and use it in GitHub Desktop.
#PROGRAMA SUMA BASICA
import time
print"Ingrese un primer valor:"
a = int(input(""))
print"Ingrese un segundo valor:"
b = int(input(""))
suma = a + b
print"Suma de valores ingresados:"
print(suma)
#Retener Tiempo de Suma
time.sleep(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment