Cod sursa(job #2044146)
Utilizator | Data | 20 octombrie 2017 22:42:35 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
#include <iostream>
using namespace std;
ifstream f("date.in");
ofstream g("date.out");
int main()
{
long int a,b;
f>>a>>b;
g<<a+b;
return 0;
}