sdnuoj1053(水题)
1053.水题4
Description
lg寂寞了
lg想家了
lg想你了
lg发明了一种加法
1+1=b
2+2=d
3+3=f
A+1=r
…
所以他要来难倒syc,但是万能的鲁观已经破解了这一切,所以鲁观告诉你这方法很水你自己判断吧!
Input
多个测试数据
每行2个元素a,b
Output
求出每行数据的结果
Sample Input
1 1
2 2
3 3
Sample Output
b
d
f
注意输入!
#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
char a,b;
while(cin>>a>>b)
{
printf("%c\n",a+b);
}
return 0;
}