Cod sursa(job #2349484)

Utilizator dzNxAlex Dzen dzNx Data 20 februarie 2019 15:13:41
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    int A,B;
    f>>A>>B;
    g<<A+B;
    return 0;
}