Cod sursa(job #960325)
Utilizator | Data | 10 iunie 2013 10:56:36 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
# include <fstream>
using namespace std;
int main ()
{
int a,b;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
fin>>a>>b;
fout<<a+b;
return 0;
}