Unhappy Hacking (ABC Edit)

AtCoder
IDabc043_b
Time2000ms
Memory256MB
Difficulty
Sig has built his own keyboard. Designed for ultimate simplicity, this keyboard only has $3$ keys on it: the `0` key, the `1` key and the backspace key. To begin with, he is using a plain text editor with this keyboard. This editor always displays one string (possibly empty). Just after the editor is launched, this string is empty. When each key on the keyboard is pressed, the following changes occur to the string: * The `0` key: a letter `0` will be inserted to the right of the string. * The `1` key: a letter `1` will be inserted to the right of the string. * The backspace key: if the string is empty, nothing happens. Otherwise, the rightmost letter of the string is deleted. Sig has launched the editor, and pressed these keys several times. You are given a string $s$, which is a record of his keystrokes in order. In this string, the letter `0` stands for the `0` key, the letter `1` stands for the `1` key and the letter `B` stands for the backspace key. What string is displayed in the editor now? ## Constraints * $1 ≦ |s| ≦ 10$ ($|s|$ denotes the length of $s$) * $s$ consists of the letters `0`, `1` and `B`. * The correct answer is not an empty string. ## Input The input is given from Standard Input in the following format: $s$ [samples]
Samples
Input #1
01B0
Output #1
00

Each time the key is pressed, the string in the editor will change as follows: `0`, `01`, `0`, `00`.
Input #2
0BB1
Output #2
1

Each time the key is pressed, the string in the editor will change as follows: `0`, `(empty)`, `(empty)`, `1`.
API Response (JSON)
{
  "problem": {
    "name": "Unhappy Hacking (ABC Edit)",
    "description": {
      "content": "Sig has built his own keyboard. Designed for ultimate simplicity, this keyboard only has $3$ keys on it: the `0` key, the `1` key and the backspace key. To begin with, he is using a plain text editor ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc043_b"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Sig has built his own keyboard. Designed for ultimate simplicity, this keyboard only has $3$ keys on it: the `0` key, the `1` key and the backspace key.\nTo begin with, he is using a plain text editor ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments