Cod sursa(job #1329844)
Utilizator | Data | 29 ianuarie 2015 21:48:41 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("date.in");
ofstream g("date.out");
int main ()
{
int a,b,c;
f>>a>>b;
f.close();
g<<a+b;
g.close();
}