Cod sursa(job #361326)
Utilizator | Data | 4 noiembrie 2009 17:07:40 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
using namespace std;
int main()
{
ifstream x("adunare.in");
ofstream y("adunare.out");
int a,b;
x>>a>>b;
y<<a+b;
return 0;
}