Cod sursa(job #1644982)
Utilizator | Data | 10 martie 2016 10:31:49 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <algorithm>
#include <fstream>
using namespace std;
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
f>>a>>b;
cout<<a+b;
return 0;
}