Cod sursa(job #1248936)
Utilizator | Data | 26 octombrie 2014 11:31:32 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
long long a,b;
ifstream f("adunare1.in");
ofstream g("adunare1.out");
int main()
{
f>>a>>b;
g<<a+b;
return 0;
}