Cod sursa(job #1731933)
| Utilizator | Data | 20 iulie 2016 14:06:32 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
int a, b, S;
int main()
{
fin >> a;
fin >> b;
S=a+b;
fout << S;
}
