Guest User

Untitled

a guest
Feb 3rd, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. import math
  2. def reindeer(presents):
  3.   reindeers = 2 #2 is minimum
  4.   reindeers = reindeers + int(math.ceil(presents / 30.0))
  5.   return reindeers
Advertisement
Add Comment
Please, Sign In to add comment