Cod sursa(job #2075349)
Utilizator | Data | 25 noiembrie 2017 12:56:32 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunari.in");
ofstream fout("adunari.out");
int main()
{
int a,b;
fin>>a>>b;
fout<<a+b;
}