Advertisement
teslariu

excep2

Sep 22nd, 2022
1,135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # script que pide dos enteros y devuelve su producto
  5. from aritmetica import ingresar_entero as ingresar
  6.  
  7. x = ingresar()
  8. y = ingresar()
  9.  
  10. print(f"El producto entre {x} e {y} es {x*y}")
  11.  
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement