#codefestival2017qualbf. [code_festival_2017_qualb_f]Largest Smallest Cyclic Shift

[code_festival_2017_qualb_f]Largest Smallest Cyclic Shift

Problem Statement

For a string SS, let f(S)f(S) be the lexicographically smallest cyclic shift of SS. For example, if S=S = babca, f(S)=f(S) = ababc because this is the smallest among all cyclic shifts (babca, abcab, bcaba, cabab, ababc).

You are given three integers X,YX, Y, and ZZ. You want to construct a string TT that consists of exactly XX as, exactly YY bs, and exactly ZZ cs. If there are multiple such strings, you want to choose one that maximizes f(T)f(T) lexicographically.

Compute the lexicographically largest possible value of f(T)f(T).

Constraints

  • 1leqX+Y+Zleq501 \\leq X + Y + Z \\leq 50
  • X,Y,ZX, Y, Z are non-negative integers.

Input

Input is given from Standard Input in the following format:

XX YY ZZ

Output

Print the answer.


Sample Input 1

2 2 0

Sample Output 1

abab

TT must consist of two as and two bs.

  • If T=T = aabb, f(T)=f(T) = aabb.
  • If T=T = abab, f(T)=f(T) = abab.
  • If T=T = abba, f(T)=f(T) = aabb.
  • If T=T = baab, f(T)=f(T) = aabb.
  • If T=T = baba, f(T)=f(T) = abab.
  • If T=T = bbaa, f(T)=f(T) = aabb.

Thus, the largest possible f(T)f(T) is abab.


Sample Input 2

1 1 1

Sample Output 2

acb