Cod sursa(job #1976845)
Utilizator | Data | 4 mai 2017 13:31:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream.h>
#include <fstream.h>
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b;
fin>>a;
fin>>b;
fout<<a+b;
}