// use std::io::*;

#[allow(unused_macros)]
// 整数1つ読み込み(macro)
macro_rules! read {
    ($($t:ty),*) => {
        {
            let mut input = String::new();
            std::io::stdin().read_line(&mut input).ok();
            let mut iter = input.split_whitespace();
            ($(iter.next().unwrap().parse::<$t>().unwrap()),*)
        }
    };
}
#[allow(unused_macros)]
// 文字列1つ読み込み(macro)
macro_rules! read_str {
    () => {
        {
            let mut input = String::new();
            std::io::stdin().read_line(&mut input).ok();
            input.trim().to_string()
        }
    };
}

#[allow(unused_macros)]
// 整数の1次元ベクトル読み込み(macro)
macro_rules! read_vec {
    ($t:ty) => {
        {
            let mut input = String::new();
            std::io::stdin().read_line(&mut input).ok();
            input.trim().split_whitespace().map(|x| x.parse::<$t>().unwrap()).collect::<Vec<$t>>()
        }
    };
}

#[allow(unused_macros)]
// 文字列の1次元ベクトル読み込み(macro)
macro_rules! read_str_vec {
    () => {
        {
            let mut input = String::new();
            std::io::stdin().read_line(&mut input).ok();
            input.trim().split_whitespace().map(|x| x.to_string()).collect::<Vec<String>>()
        }
    };
}

fn main() {
    let mut s = String::from(read_str!());
    let t = String::from(read_str!());
    let n = read!(usize);
    for _ in 0..n {
        s.push_str(&("_".to_owned() + &t));
    }
    println!("{}", s);
}