← Back to List

28938번: Конвейер ↗

Solutions

Python 3
103 B | 103 chars
input()
s = sum([*map(int, input().split())])

print("Right" if s > 0 else "Left" if s < 0 else "Stay")