주하진이 매우 괜찮은 깨달음을 얻는 과정 Vol.1

This commit is contained in:
2020-04-29 20:23:12 +09:00
parent 0241857690
commit a4366d0b35
5 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
I = list(map(int, input().split()))
while I[0] != 0:
I.sort()
if I[0] ** 2 + I[1] ** 2 == I[2] ** 2:
print("right")
else:
print("wrong")
I = list(map(int, input().split()))