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
",a+b); return 0; }

転載は作者を明記してください:劉さん