Skip to content

Instantly share code, notes, and snippets.

@brandon22esquivel
Created September 7, 2019 20:49
Show Gist options
  • Save brandon22esquivel/453cf8500b4856478c29670240bcaf66 to your computer and use it in GitHub Desktop.
Save brandon22esquivel/453cf8500b4856478c29670240bcaf66 to your computer and use it in GitHub Desktop.
#PROGRAMA MANEJO DE MATEMATICAS
import time
from math import *
print"Ingrese un primer valor:"
x = int(input(""))
print"Ingrese un segundo valor:"
y = int(input(""))
s = log(x + y)
print"El resultado es:"
print(s)
#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