{"raw_statement":[{"iden":"problem statement","content":"The consumption tax rate in the Republic of ARC is $t$ percent, where $t$ is a positive integer.\nThere is a shop called Seisu-ya _(integer shop)_ there. It sells each positive integer $A$ for $A$ yen (Japanese currency) excluding tax, that is, $\\left\\lfloor\\frac{100+t}{100}A\\right\\rfloor$ yen including tax. Here, $\\lfloor x\\rfloor$ denotes the largest integer not greater than $x$ for a real number $x$.\nAlthough Seisu-ya sells every positive integer, there are some positive integer values that cannot be the tax-included price of an integer. Among those values, find the $N$\\-th smallest value."},{"iden":"constraints","content":"*   $1\\leq t\\leq 50$\n*   $1\\leq N\\leq 10^{9}$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$t$ $N$"},{"iden":"sample input 1","content":"10 1"},{"iden":"sample output 1","content":"10\n\nIn this sample, the consumption tax rate is $10$ percent.\n\n*   The integer $9$ is sold for $\\left\\lfloor \\frac{110}{100}\\times 9\\right\\rfloor = \\lfloor 9.9\\rfloor = 9$ yen including tax.\n*   The integer $10$ is sold for $\\left\\lfloor \\frac{110}{100}\\times 10\\right\\rfloor = \\lfloor 11\\rfloor = 11$ yen including tax.\n\nFrom above, we can see that $10$ is not the tax-included price of any integer, and this is the minimum such value."},{"iden":"sample input 2","content":"3 5"},{"iden":"sample output 2","content":"171\n\nIf the consumption tax rate is $3$ percent, the smallest values that cannot be the tax-included price of an integer are $34, 68, 102, 137, 171, \\ldots$"},{"iden":"sample input 3","content":"1 1000000000"},{"iden":"sample output 3","content":"100999999999"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}