#include <iostream>
#include <cstring>
#include <algorithm>
#include<stack>
//括号匹配--栈
using namespace std;
string str;
stack<char> s;
int main()
{
cin>>str;
for(int i=0;i<str.size();i++)
{
if(str[i]=='('||str[i]=='[') s.push(str[i]);
else if(str[i]==')'&&!s.empty()&&s.top()=='(') s.pop();
else if(str[i]==']'&&!s.empty()&&s.top()=='[') s.pop();
else
{
cout<<"wrong";
return 0;
}
}
if(!s.empty()) cout<<"wrong";
else cout<<"ok";
return 0;
}