Cod sursa(job #82313)
| Utilizator | Data | 6 septembrie 2007 16:26:19 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
/*
100p
*/
#include<fstream.h>
int a, b, s;
void citire()
{
ifstream in("adunare.in");
in>>a;
in>>b;
in.close();
}
int main()
{
citire();
s=a+b;
ofstream out("adunare.out");
out<<s;
out.close();
return 0;
}