C++:
#include
using namespace std;
int main(){
int n, z = 0, o = 0;
cin >> n;
if(n==0){
cout << "nuley"; <br>return 0;
}
while(n>0){
if(n%2) o++;
else z++;
n /= 2;
}
if(o>z) cout << "edinits";<br>else if(o==z) cout << "odinakovo";<br>else cout << "nuley";<br>return 0;
}