现在的位置: 首页 > 综合 > 正文

POJ 1000 A+B Problem

2018年09月23日 ⁄ 综合 ⁄ 共 82字 ⁄ 字号 评论关闭
# include <stdio.h>
int main()
{    
	int a,b;    
	scanf("%d %d",&a, &b);  
	printf("%d\n",a+b);   
	return 0;
}

抱歉!评论已关闭.