Cod sursa(job #2293350)

Utilizator ZePimpPotatoeAliuta Robert ZePimpPotatoe Data 30 noiembrie 2018 21:47:52
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;
int main(){
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    int a,b;
    f>>a>>b;
    int c = a + b;
    g<<c;
}