level 10
Schmeichel20
楼主
#include <iostream>
int main()
{
freopen("input.in","r",stdin);
freopen("output.out","w",stdout);
int a,b;
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
return 0;
}
2010年04月06日 11点04分
1
int main()
{
freopen("input.in","r",stdin);
freopen("output.out","w",stdout);
int a,b;
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
return 0;
}