首页 > 代码库 > HDOJ 1095

HDOJ 1095

#include "stdio.h"int main(void){	int m, n;		while(scanf("%d%d", &m, &n) == 2){		printf("%d\n\n", m+n);	}		return 0;} 

 

HDOJ 1095