Cod sursa(job #1491468)

Utilizator lucaperjuLuca Perju Verzotti lucaperju Data 25 septembrie 2015 16:05:00
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>

using namespace std;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
int main()
{
    int a,b,s;
    in>>a>>b;
    s=a+b;
    out<<s;
    return 0;
}