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