Cod sursa(job #2156068)
Utilizator | Data | 8 martie 2018 14:05:45 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.2 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
int a, b;
f >> a >> b;
g << a + b << '\n';
return 0;
}