#include <iostream>

using namespace std;
int c,d,e,f,g,a,h,c2;
int main(void) {
    cin >> c >> d >> e >> f >> g >> a >> h >> c2;
    if(c==1 && d==2 && e==3 && f==4 && g==5 && a==6 && h==7 && c2==8) cout << "uzlazno" << endl;
    else
    if(c==8 && d==7 && e==6 && f==5 && g==4 && a==3 && h==2 && c2==1) cout << "silazno" << endl;
    else cout << "razlozeno" << endl;
    return 0;
    }
