{"problem":{"name":"Subscribers","description":{"content":"You are given an integer $N$.   Print an approximation of $N$ according to the following instructions. *   If $N$ is less than or equal to $10^3-1$, print $N$ as it is. *   If $N$ is between $10^3$ 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":"abc304_b"},"statements":[{"statement_type":"Markdown","content":"You are given an integer $N$.  \nPrint an approximation of $N$ according to the following instructions.\n\n*   If $N$ is less than or equal to $10^3-1$, print $N$ as it is.\n*   If $N$ is between $10^3$ and $10^4-1$, inclusive, truncate the ones digit of $N$ and print the result.\n*   If $N$ is between $10^4$ and $10^5-1$, inclusive, truncate the tens digit and all digits below it of $N$ and print the result.\n*   If $N$ is between $10^5$ and $10^6-1$, inclusive, truncate the hundreds digit and all digits below it of $N$ and print the result.\n*   If $N$ is between $10^6$ and $10^7-1$, inclusive, truncate the thousands digit and all digits below it of $N$ and print the result.\n*   If $N$ is between $10^7$ and $10^8-1$, inclusive, truncate the ten-thousands digit and all digits below it of $N$ and print the result.\n*   If $N$ is between $10^8$ and $10^9-1$, inclusive, truncate the hundred-thousands digit and all digits below it of $N$ and print the result.\n\n## Constraints\n\n*   $N$ is an integer between $0$ and $10^9-1$, inclusive.\n\n## Input\n\nThe input is given from Standard Input in the following format:\n\n$N$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"abc304_b","tags":[],"sample_group":[["20230603","20200000\n\n$20230603$ is between $10^7$ and $10^8-1$ (inclusive).  \nTherefore, truncate the ten-thousands digit and all digits below it, and print $20200000$."],["0","0"],["304","304"],["500600","500000"]],"created_at":"2026-03-03 11:01:13"}}