#ABC154A. Remaining Balls
Remaining Balls
题目描述
We have balls with the string written on each of them and balls with the string written on each of them.
From these balls, Takahashi chooses one with the string written on it and throws it away.
Find the number of balls with the string and balls with the string that we have now.
我们有 个球,每个球上都写着字符串 ;还有 个球,每个球上都写着字符串 。
高桥从这些球中选出一个写有字符串 的球并把它扔掉。
求现在有多少个写有字符串 的球和多少个写有字符串 的球。
输入格式
输入内容按以下格式标准输入:
输出格式
打印答案,中间空一格。
样例 #1
样例输入 #1
red blue
3 4
red
样例输出 #1
2 4
样例 #2
样例输入 #2
red blue
5 5
blue
样例输出 #2
5 4
说明
数据规模与约定
- 、 和 是由小写英文字母组成的字符串。
- 和 的长度分别介于 和 之间。(含)之间。
- 或 。
- 和 都是整数。
样例 解释
高桥选择了一个写有 "红 "字的球,然后把它扔掉了。现在我们有两个写有字符串 的球和四个写有字符串 的球。
样例 解释
高桥选择了一个写有 "蓝色 "的球,然后把它扔掉了。现在我们有五个写有字符串 的球和四个写有字符串 的球。