Skip to content

Instantly share code, notes, and snippets.

@p53ud0k0d3
Created March 18, 2015 18:05
Show Gist options
  • Save p53ud0k0d3/e69919b3362390efc0d6 to your computer and use it in GitHub Desktop.
Save p53ud0k0d3/e69919b3362390efc0d6 to your computer and use it in GitHub Desktop.
HackerRank Minimum Draws
pairs = []
for _ in xrange(int(raw_input())):
pairs.append(int(raw_input()))
for item in pairs:
print item+1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment