ACM从零开始---电子科大POJ "A+B Problem"

                              A+B Problem

                                    Time Limit: 3000/1000MS (Java/Others)     Memory Limit: 65535/65535KB (Java/Others)





C-source:

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

转载请注明作者:小刘

你可能感兴趣的:(ACM,poj,电子科大)