Cod sursa(job #2341363)
Utilizator | Data | 11 februarie 2019 19:29:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.17 kb |
#include <bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
}