Cod sursa(job #823657)
Utilizator | Data | 25 noiembrie 2012 14:46:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.25 kb |
#include<iostream>
#include<fstream>
using namespace std;
fstream fin("adunare.in");
ofstream fout("adunare.out");
int main () {
int a,b,s;
fin>>a>>b;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}