Cod sursa(job #1110808)
Utilizator | Data | 18 februarie 2014 13:32:25 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main ()
{
ifstream fin("adunare.in")
ofstream fout("adunare.out")
int a,b,s=0;
fin>>a>>b;
s=a+b;
fout<<s<<endl;
fin.close()
fout.close()
return o;
}