← Back to List

28113번: 정보섬의 대중교통 ↗

Solutions

Python 3
133 B | 133 chars
N, A, B = map(int, input().split())

if N > B or A < B:
    print("Bus")
elif A > B:
    print("Subway")
else:
    print("Anything")