Cod sursa(job #1143633)
Utilizator | Data | 15 martie 2014 19:40:37 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.33 kb |
#include<fstream>
using namespace std;
int a,b;
void citire() {
ifstream in("adunare.in");
in>>a>>b;
in.close();
}
void solve() {}
void afisare(){
ofstream out("adunare.out");
out<<a+b<<'\n';
out.close();
}
int main() {
citire();
solve();
afisare();
return 0;
}