#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; }