Cod sursa(job #2274752)
| Utilizator | Data | 2 noiembrie 2018 14:19:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-32 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
long long int A, B, S=0;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>A>>B;
S=A+B;
fout<<S;
fin.close();
fout.close();
return 0;
}