Cod sursa(job #792339)
Utilizator | Data | 26 septembrie 2012 23:06:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
int main ()
{
int a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a>>b;
out<<a+b;
return 0;
}