HDOJ-1000 A + B Problem

http://acm.hdu.edu.cn/showproblem.php?pid=1000

# include <stdio.h>

int main()
{
	__int64 a, b;

	while(scanf("%I64d %I64d",&a, &b) != EOF)
		printf("%I64d\n",a + b);

	return 0;
}

  

posted @ 2015-02-20 15:00  懒人の猫  阅读(134)  评论(0编辑  收藏  举报