Cod sursa(job #379006)
Utilizator | Data | 30 decembrie 2009 11:45:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.16 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int long long s;
int main()
{
f>>a>>b;
s=a+b;
g<<s;
return 0;
}