seventh非常的不喜欢0,因为上次在写FJUTOJ1319这道题目的时候被0坑的老惨了
所以他本来打算出一道很简单的数学题给你们,但是因为他不喜欢0,所以他决定稍稍微加点难度
他本来打算给出两个数然后直接让你们算出两个数的和,怎么样?简单吧!
但是seventh不喜欢0,所以他照样还是给你们两个数,但是要你们判断去掉0以后,他们答案是不是还是正确的。
比如101+102=203,去掉0以后,11+12=23,这样子就是正确的。
The input will consist of two lines, the first line will contain the integer a, and the second line will contain the integer b which are in the equation as described above (1 ≤ a, b ≤ 109). There won't be any leading zeros in both. The value of c should be calculated as c = a + b.
输入有两行,
第一行输入一个整数a,第二行输入一个正式b,(1 ≤ a, b ≤ 109).两者都不会有前导零
The output will be just one line, you should print "YES" if the equation will remain correct after removing all zeros, and print "NO" otherwise.
计算a+b的和,判断去掉0以后的结果是不是正确的,如果是打印YES,反之则打印NO
101
102
YES
105
106
NO