Cod sursa(job #2862707)

Utilizator mrvalentynTime Limit Exceeded mrvalentyn Data 5 martie 2022 19:03:34
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    int a, b;
    f >> a >> b;
    g << a + b;
    f.close();
    g.close();
    return 0;
}