Cod sursa(job #2247795)
Utilizator | Data | 29 septembrie 2018 09:50:04 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
int a,b,s;
f>>a;
f>>b;
s=a+b;
cout<<s;
return 0;
}