Cod sursa(job #1702636)
Utilizator | Data | 15 mai 2016 13:50:37 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.19 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a,b;
fin>> a >> b;
fout<< a + b<< '\n';
return 0;
}