Advertisement
teslariu

func_derivada

Nov 13th, 2021
677
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. from suma import ingresar_numero as i,sumar as s
  5.  
  6.  
  7. def producto(a,b):
  8.     return a*b
  9.  
  10.  
  11. a = i()
  12. b = i()
  13. print(f"El producto de {a} y {b} es {producto(a,b)}")
  14. print(f"La suma de {a} y {b} es {s(a,b)}")
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement