Cod sursa(job #2170757)
Utilizator | Data | 15 martie 2018 09:39:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
void citire() {
long long int a,b;
f>>a>>b;
g<<(a+b);
}
int main() {
citire();
return 0;
}