#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>

using namespace std;

int main() 
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    vector<int> vec(3);
    while(cin >> vec[0] >> vec[1] >> vec[2])
    {
        sort(vec.begin(), vec.end());
        if(pow(vec[0], 2) + pow(vec[1], 2) < pow(vec[2], 2)) cout << "钝角三角形" << "\n";
        if(pow(vec[0], 2) + pow(vec[1], 2) == pow(vec[2], 2)) cout << "直角三角形" << "\n";
        if(pow(vec[0], 2) + pow(vec[1], 2) > pow(vec[2], 2)) cout << "锐角三角形" << "\n";
    }
    return 0;
}