Cod sursa(job #2446447)

Utilizator OvidRata Ovidiu Ovid Data 8 august 2019 23:08:15
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Lista lui wefgef Marime 0.23 kb
#include<iostream>
#include<fstream>
using namespace std;

int a, b;
fstream st;

int main(){
st.open("adunare.in");
st>>a>>b;
st.close();

if(a+b<=2000000000){
st.open("adunare.out");
st<<a+b;
st.close();
}

return 0;
}