A - Remaining Balls 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

文字列 S の書かれたボールが A 個、文字列 T の書かれたボールが B 個あります。
高橋君は、文字列 U の書かれたボールを 1 個選んで捨てました。
文字列 S,T の書かれたボールがそれぞれ何個残っているか求めてください。

制約

  • S,T,U は英小文字のみからなる文字列
  • S,T の長さは 1 以上 10 以下
  • S \not= T
  • S=U または T=U
  • 1 \leq A,B \leq 10
  • A,B は整数

入力

入力は以下の形式で標準入力から与えられる。

S T
A B
U

出力

答えを空白区切りで出力せよ。


入力例 1

red blue
3 4
red

出力例 1

2 4

高橋君は red が書かれたボールを 1 つ選んで捨てました。
文字列 S,T が書かれたボールは、それぞれ 2,4 個残っています。


入力例 2

red blue
5 5
blue

出力例 2

5 4

高橋君は blue が書かれたボールを 1 つ選んで捨てました。
文字列 S,T が書かれたボールは、それぞれ 5,4 個残っています。

Score : 100 points

Problem Statement

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

Output

Print the answer, with space in between.


Sample Input 1

red blue
3 4
red

Sample 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.


Sample Input 2

red blue
5 5
blue

Sample 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.