HDU1000 A + B Problem

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Dragon_fxl/article/details/55109131

原题传送

#include <stdio.h>
int main(void) {
	int a, b;
	while(~scanf("%d%d", &a, &b))
        printf("%d\n", a + b);
	return 0;
}



猜你喜欢

转载自blog.csdn.net/Dragon_fxl/article/details/55109131