Cod sursa(job #217023)
Utilizator | Data | 26 octombrie 2008 19:28:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<fstream.h>
using namespace std;
int main ()
{
int A,B;
ifstream in("adunare.in");
in>>A;
in>>B;
in.close ();
ofstream out("adunare.out");
out<<A+B;
return 0;
}