#Este programa crea cuatro funciones para realizar las 4 operaciones básicas.
#Programador: Alice Yuman 
def mas(v,m):
      return v + m
def men(v,m):
      return v - m
def por(v,m):
      return v * m
def div(v,m):
      return v / m
# v = int(input("Ingrese un numero entero"))
v = 20
# m = int(input("Ingrese otro número entero"))
m = 10
print("Suma", mas (v,m))
print("Resta", men (v,m))
print("Multiplicacion", por (v,m))
print("Division", div (v,m))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: