Cod sursa(job #1999890)
Utilizator | Data | 12 iulie 2017 12:40:32 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream in("yo.in");
ofstream out("yo.out");
int main()
{
int a,b;
in >> a,b;
out<< a+b;
return 0;
}