Cod sursa(job #2396527)
Utilizator | Data | 3 aprilie 2019 16:39:04 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
using namespace std;
ifstream in("date.in");
ofstream out("date.out");
int a,b;
int main()
{
in>>a>>b;
out<<a+b;
}