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