Cod sursa(job #927602)
Utilizator | Data | 25 martie 2013 21:34:51 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 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;
}