Cod sursa(job #1347730)
Utilizator | Data | 19 februarie 2015 10:13:09 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int a,b;
int main()
{
ifstream f("suma.in");
ofstream g("suma.out");
f>>a>>b;
g<<a+b;
return 0;
}