#include using namespace std; int main() { string s, t; int n; cin >> s >> t >> n; for( int i = 0; i < n; i++ ) s += '_' + t; cout << s << endl; }