프로그래밍_일반/백준
boj 6502
Spadework
2020. 3. 11. 09:07
* Solved 기준 브론즈2 단순 풀이
i=0
while True:
l = list(map(int, input().split())); i+=1
if l==[0]: break
print('Pizza {} {} on the table.'.format(i, 'fits' if (2*l[0])**2 >= l[1]**2+l[2]**2 else 'does not fit'))