728x90
#include <iostream>
using namespace std;
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
while (true) {
int x, y, z;
cin >> x >> y >> z;
if (x == 0 && y == 0 && z == 0) break;
if (x >= y && x >= z) {
if (y * y + z * z == x * x) cout << "right" << '\n';
else cout << "wrong" << '\n';
}
else if (y >= x && y >= z) {
if (x * x + z * z == y * y) cout << "right" << '\n';
else cout << "wrong" << '\n';
}
else if (z >= x && z >= y) {
if(x * x + y * y == z * z) cout << "right" << '\n';
else cout << "wrong" << '\n';
}
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 2468번 안전영역 (0) | 2020.02.06 |
---|---|
[백준] 10026번 적록색약 (0) | 2020.02.06 |
[백준] 3009번 네 번째 점 (0) | 2020.02.05 |
[백준] 10845번 큐 (0) | 2020.02.05 |
[백준] 1260번 DFS와 BFS (0) | 2020.02.04 |