-Code
from sys import stdin
for _ in range(int(stdin.readline())):
a, b, c = map(int, stdin.readline().split())
arr = [a + b, abs(a - b), a * b, a / b, b / a]
print('Possible' if c in arr else 'Impossible')
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 21420번 Монетки (0) | 2022.11.10 |
---|---|
[백준/파이썬] 17598번 Animal King Election (0) | 2022.11.09 |
[백준/파이썬] 25277번 Culture shock (0) | 2022.11.07 |
[백준/파이썬] 6784번 Multiple Choice (0) | 2022.11.06 |
[백준/파이썬] 20360번 Binary numbers (0) | 2022.11.05 |