Cod sursa(job #1175669)
Utilizator | Data | 24 aprilie 2014 21:12:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f ("date.in");
ofstream g ("date.out");
int main()
{
int a,b;
f>>a;
f>>b;
g<<a+b;
}