#include <iostream> using namespace std; int main() { char x; cin>>x; if(x>='1'&&x<='9') { cout<<'x'*5; } else { cout<<"No"; } return 0; }