Cod sursa(job #2164186)

Utilizator RattlerRazvan Ionut Rattler Data 12 martie 2018 22:00:21
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>

using namespace std;
    ifstream ad("adunare.in");
    ofstream sc("adunare.out");
int main(){
    int a,b;

    ad>>a>>b;
    sc<<a+b;
return 0;
}