Cod sursa(job #580249)
Utilizator | Data | 12 aprilie 2011 21:16:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.2 kb |
#include<algorithm>
using namespace std;
int a,b;
int main(){
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;}