Cod sursa(job #2304710)
Utilizator | Data | 18 decembrie 2018 15:58:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
unsigned long long a, b;
int main(){
fin>>a>>b;
fout<<a+b;
return 0;
}