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