Created
April 21, 2017 17:43
-
-
Save alothings/c402361fea5aa53f4871500bb4f1a1a3 to your computer and use it in GitHub Desktop.
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
customers = {} | |
for i in range(n): | |
size, price = input().split() | |
customers[size] = price | |
# To comprehension |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment