← Back to List

34795번: An Elephant Problem ↗

Solutions

Python 3
63 B | 63 chars
a, b = map(int, input().split())
print(b // a + int(b % a > 0))