Cod sursa(job #2690091)
Utilizator | Data | 22 decembrie 2020 23:05:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
void Citire(){
fin >> a >> b;
}
void APlusB(int a, int b) {
fout << a+b;
}
int main() {
Citire();
APlusB(a, b);
return 0;
}