Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # script que pide dos enteros y devuelve su producto
- from aritmetica import ingresar_entero as ingresar
- x = ingresar()
- y = ingresar()
- print(f"El producto entre {x} e {y} es {x*y}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement