#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; cout << "x_"; for(int i=3 ; i <= n ; i++){ cout << "x"; } return 0; }