Cod sursa(job #1899299)
Utilizator | Data | 2 martie 2017 17:17:35 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.21 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(){
long long int a, b;
fin >> a >> b;
fout << (a + b);
return 0;
}