eolymp
bolt
Try our new interface for solving problems
Problems

Contract Revision

Contract Revision

For years, all contracts of the Association of Contracts for Modernization (ACM) were typed using an old typewriter machine. Recently Mr. Miranda, one of the accountants of the ACM, realized that the machine had a failure in one, and only one, numerical digit. More specifically, the flawed digit, when typed, is not printed on the sheet, as if the corresponding key was not pressed. He realized that this could have changed the numerical representation of contract values. Worried about accounting, Mr. Miranda wants to know, from the original values agreed for the contracts (which he kept in handwritten notes) which values are actually represented in the contracts. For example, if the failed digit in the machine is \textbf{5}, an agreed value of \textbf{1500} would be represented in the corresponding contract as \textbf{100}, because the digit \textbf{5} would not be printed. Note that Mr. Miranda wants to know the numeric value represented in the contract, ie, in the same machine, the number \textbf{5000} corresponds to the numeric value \textbf{0}, not \textbf{000} (as it actually appears in the contract). \InputFile The input consists of several test cases, each in one line. Each line contains two integers \textbf{D} and \textbf{N} (\textbf{1} ≤ \textbf{D} ≤ \textbf{9} and \textbf{1} ≤ \textbf{N} < \textbf{10^100} ), representing, respectively, the digit that has failed in the machine and the number that was originally agreed for the contract (which can be very large because of hiperinflation). The last test case is followed by a line which contains only two zeros separated by white space. \OutputFile For each test case in the input your program must print one line containing a single integer, the numeric value represented in the contract.
Time limit 1 second
Memory limit 64 MiB
Input example #1
5 5000000
3 123456
9 23454324543423
9 99999999991999999
7 777
0 0
Output example #1
0
12456
23454324543423
1
0
Source Maratona de Programa¸c˜ao da SBC – ACM ICPC – 2010