{"problem":{"name":"200th ABC-200","description":{"content":"You are given an integer $N$.   Do the following operation $K$ times on it and print the resulting integer. *   If $N$ is a multiple of $200$, divide it by $200$. *   Otherwise, see $N$ as a string a","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"abc200_b"},"statements":[{"statement_type":"Markdown","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$.\n\n## Constraints\n\n*   All values in input are integers.\n*   $1 \\le N \\le 10^5$\n*   $1 \\le K \\le 20$\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$ $K$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"abc200_b","tags":[],"sample_group":[["2021 4","50531\n\nApplying the operation on $N=2021$ results in $N$ becoming $2021 \\rightarrow 2021200 \\rightarrow 10106 \\rightarrow 10106200 \\rightarrow 50531$."],["40000 2","1"],["8691 20","84875488281\n\nThe answer may not fit into the signed $32$\\-bit integer type."]],"created_at":"2026-03-03 11:01:14"}}