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