{"raw_statement":[{"iden":"problem statement","content":"For a positive integer $x$, let $f(x)$ denote the sum of its digits. For example, $f(331)=3+3+1=7$, $f(2024)=2+0+2+4=8$, and $f(1)=1$.\nYou are given a positive integer $N$. Print a positive integer $x$ that satisfies all of the following conditions:\n\n*   $1\\leq x< 10^{10000}$\n*   $f(2^{i-1}x)>f(2^ix)$ for all integers $1\\leq i\\leq N$."},{"iden":"constraints","content":"*   $1\\leq N\\leq 50$"},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"3"},{"iden":"sample output 1","content":"89\n\nFor $x=89$, it follows from $f(x)=17$, $f(2x)=16$, $f(4x)=14$, and $f(8x)=10$ that $f(x)>f(2x)>f(4x)>f(8x)$, satisfying the conditions.\nSome other integers that satisfy the conditions are $x=539$ and $x=890$."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}