Cod sursa(job #2008033)

Utilizator ApolodorTudor Fernea Apolodor Data 4 august 2017 23:50:32
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>

using namespace std;

int a,b;
ifstream fi("adunare.in");
ofstream fo("adunare.out");

int main()
{
    fi>>a>>b;
    fo<<a+b;
}