Cod sursa(job #1190452)
Utilizator | Data | 25 mai 2014 13:23:47 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | itmarathon | Marime | 0.21 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
int a,b,s=0;
fstream f("adunare.in");
f>>a;
f>>b;
s=a+b;
f.close();
ofstream g("adunare.out");
g<<s;
}