Cod sursa(job #2565318)
Utilizator | Data | 2 martie 2020 13:38:22 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("date.in");
ofstream fout("date.out");
int main()
{ int a,b;
cin>>a>>b;
fout<<a+b;
return 0;
}