Cod sursa(job #1955088)
Utilizator | Data | 5 aprilie 2017 19:56:32 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,m,s;
ifstream f("adunare.in");
ofstream g("adunare.out");
f >> n >> m;
s=n+m;
g << s <<'\n';
f.close();
g.close();
return 0;
}