Cod sursa(job #2471033)
Utilizator | Data | 10 octombrie 2019 08:48:47 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-32 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 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<< endl;
return 0;
}