Created
March 18, 2015 18:05
-
-
Save p53ud0k0d3/e69919b3362390efc0d6 to your computer and use it in GitHub Desktop.
HackerRank Minimum Draws
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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