#include using namespace std; int main(){ string S, T; int N; cin >> S >> T >> N; cout << S; while(N--){ cout << '_' << T; } }