N = int(input()) S = "".join(['a' if i % 2 == 0 else 'b' for i in range(N)]) print(S)