Cod sursa(job #893461)
Utilizator | Data | 26 februarie 2013 15:51:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream F("adunare.in");
ofstream G("adunare.out");
int a,b;
F>>a>>b;
G<<a+b;
return 0;
}