Cod sursa(job #2176845)
Utilizator | Data | 18 martie 2018 10:22:30 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin ("adunare.in")
ofstream fout ("adunare.out")
int main(void)
{
int a , b;
fin >> a >> b;
fout << a+b;
return 0;
}