DrizzerX

receta

Feb 26th, 2019
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. tazucar = .031
  2. tmant = .021
  3. tharin = .057
  4.  
  5. def printgall (g):
  6.     print(("%f tazas de azucar \n%f tazas de mantequilla\n%f tazas de harina") % (tazucar*g,tmant*g,tharin*g) )
  7.  
  8. galletas = (int)(input())
  9. printgall(galletas)
Advertisement
Add Comment
Please, Sign In to add comment