Cod sursa(job #2332483)
| Utilizator | Data | 30 ianuarie 2019 19:43:36 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.26 kb |
#include "pch.h"
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0;
}
