Advertisement
teslariu

script

Nov 16th, 2022
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # debe estar en el mismo directorio que calc.py
  5. from calc import ingresar_numero as ingresar
  6.  
  7. a = ingresar()
  8. b = ingresar()
  9.  
  10. print("a + b =",a+b)
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement