Cod sursa(job #2439339)
Utilizator | Data | 15 iulie 2019 18:04:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<bits/stdc++.h>
using namespace std;
int main(){
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long int a,b;
fin>>a>>b;
fout<<a+b;
return 0;
}