Cod sursa(job #2146595)
Utilizator | Data | 28 februarie 2018 08:11:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 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;
}
void rez() {
}
int main() {
citire();
return 0;
}