Cod sursa(job #320346)
Utilizator | Data | 4 iunie 2009 15:24:30 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream>
using namespace std;
ifstream in("date.in");
ofstream out("date.out");
int main()
{
int a,b;
in>>a;
in>>b;
out<<a+b;
}