use proconio::input;

fn main() {
    input! {
        n: usize,
    }

    println!("{}", "a".repeat(n));
}