首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】67A - Life Without Zeros(水)

【CodeForces】67A - Life Without Zeros(水)

作者头像
FishWang
发布2025-08-26 15:52:48
发布2025-08-26 15:52:48
11600
代码可运行
举报
运行总次数:0
代码可运行

A. Life Without Zeros

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Can you imagine our life if we removed all zeros from it? For sure we will have many problems.

In this problem we will have a simple example if we removed all zeros from our life, it's the addition operation. Let's assume you are given this equation a + b = c, where a and b are positive integers, and c is the sum of a and b. Now let's remove all zeros from this equation. Will the equation remain correct after removing all zeros?

For example if the equation is 101 + 102 = 203, if we removed all zeros it will be 11 + 12 = 23 which is still a correct equation.

But if the equation is 105 + 106 = 211, if we removed all zeros it will be 15 + 16 = 211 which is not a correct equation.

Input

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 asc = a + b.

Output

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.

Examples

input

代码语言:javascript
代码运行次数:0
运行
复制
101
102

output

代码语言:javascript
代码运行次数:0
运行
复制
YES

input

代码语言:javascript
代码运行次数:0
运行
复制
105
106

output

代码语言:javascript
代码运行次数:0
运行
复制
NO

对去0操作的函数写好了,这道题也没问题了。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
int remove(int n)
{
	int m = 0;
	int t = 1;
	while (n != 0)
	{
		if (n % 10 != 0)
		{
			m += n % 10 * t;
			t *= 10;
		}
		n /= 10;
	}
	return m;
}
int main()
{
	int a,b,c;
	int ta,tb;
	while (~scanf ("%d",&a))
	{
		scanf ("%d",&b);
		c = a + b;
		ta = remove (a);
		tb = remove (b);
		if (ta + tb == remove (c))
			printf ("YES\n");
		else
			printf ("NO\n");
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档