Cod sursa(job #1658222)
Utilizator | Data | 21 martie 2016 10:58:24 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
ifstream is ("adunare.in");
ofstream os ("adunare.out");
int main()
{
int a, b;
is >> a >> b;
os << a+b;
is.close();
os.close();
}