Advertisement
PedroPauloFO

Constrói Coluna

Jun 4th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. # coding: utf-8
  2. # Programacao 1, 2014.1 Pedro Paulo
  3. # Limpeza
  4.  
  5. blocos_pequenos = int(raw_input())
  6. blocos_grandes = int(raw_input())
  7. altura_coluna = int(raw_input())
  8.  
  9. if ((blocos_grandes * 5) + blocos_pequenos) * 10 >= altura_coluna:
  10.     print "Possível."
  11. else:
  12.     print "Impossível."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement