Cod sursa(job #1996674)
| Utilizator | Data | 2 iulie 2017 13:24:13 | |
|---|---|---|---|
| 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>>b;
g<<a+b;
return 0;
}
