Cod sursa(job #2446440)
Utilizator | Data | 8 august 2019 21:37:23 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
int a, b;
fstream st;
int main(){
st.open("adunare.in");
st>>a>>b;
st.close();
st.open("adunare.out");
st<<a+b;
st.close();
return 0;
}