Remaining Balls

AtCoder
IDabc154_a
Time2000ms
Memory256MB
Difficulty
We have $A$ balls with the string $S$ written on each of them and $B$ balls with the string $T$ written on each of them. From these balls, Takahashi chooses one with the string $U$ written on it and throws it away. Find the number of balls with the string $S$ and balls with the string $T$ that we have now. ## Constraints * $S$, $T$, and $U$ are strings consisting of lowercase English letters. * The lengths of $S$ and $T$ are each between $1$ and $10$ (inclusive). * $S \not= T$ * $S=U$ or $T=U$. * $1 \leq A,B \leq 10$ * $A$ and $B$ are integers. ## Input Input is given from Standard Input in the following format: $S$ $T$ $A$ $B$ $U$ [samples]
Samples
Input #1
red blue
3 4
red
Output #1
2 4

Takahashi chose a ball with `red` written on it and threw it away. Now we have two balls with the string $S$ and four balls with the string $T$.
Input #2
red blue
5 5
blue
Output #2
5 4

Takahashi chose a ball with `blue` written on it and threw it away. Now we have five balls with the string $S$ and four balls with the string $T$.
API Response (JSON)
{
  "problem": {
    "name": "Remaining Balls",
    "description": {
      "content": "We have $A$ balls with the string $S$ written on each of them and $B$ balls with the string $T$ written on each of them.   From these balls, Takahashi chooses one with the string $U$ written on it and",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc154_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "We have $A$ balls with the string $S$ written on each of them and $B$ balls with the string $T$ written on each of them.  \nFrom these balls, Takahashi chooses one with the string $U$ written on it and...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments