#include using namespace std; string a, b; int n; int main(){ cin >> a >> b >> n; cout << a; while (n--){ cout << '_' << b; } return 0; }