{"raw_statement":[{"iden":"problem statement","content":"You are given an integer $N$.  \nDo the following operation $K$ times on it and print the resulting integer.\n\n*   If $N$ is a multiple of $200$, divide it by $200$.\n*   Otherwise, see $N$ as a string and append $200$ to the end of it.\n    *   For example, $7$ would become $7200$ and $1234$ would become $1234200$."},{"iden":"constraints","content":"*   All values in input are integers.\n*   $1 \\le N \\le 10^5$\n*   $1 \\le K \\le 20$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$ $K$"},{"iden":"sample input 1","content":"2021 4"},{"iden":"sample output 1","content":"50531\n\nApplying the operation on $N=2021$ results in $N$ becoming $2021 \\rightarrow 2021200 \\rightarrow 10106 \\rightarrow 10106200 \\rightarrow 50531$."},{"iden":"sample input 2","content":"40000 2"},{"iden":"sample output 2","content":"1"},{"iden":"sample input 3","content":"8691 20"},{"iden":"sample output 3","content":"84875488281\n\nThe answer may not fit into the signed $32$\\-bit integer type."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}