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