Cod sursa(job #1328229)
Utilizator | Data | 28 ianuarie 2015 09:31:37 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
#include <math.h>
#include <algorithm>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a ,b;
int main()
{
f>>a>>b;
g<<a+b;
}