본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 13580번 Andando no tempo

by 현장 2022. 1. 19.

-코드

arr = sorted(list(map(int, input().split())))
if arr[0] == arr[1] or arr[1] == arr[2] or arr[0] + arr[1] == arr[2]:
    print('S')
else:
    print('N')