Cod sursa(job #821546)
Utilizator | Data | 22 noiembrie 2012 15:18:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
using namespace std;
ifstream fin("Adunare.in");
ofstream fout ("Adunare.out");
int main(){
int a,b,s;
fin>>a>>b;
s=a+b;
fout<<s;
return 0;
}