Cod sursa(job #1245825)

Utilizator AlphaZoneRAlbert Ferencz AlphaZoneR Data 20 octombrie 2014 07:59:47
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;

ifstream in("adunare.in");
ofstream out("adunare.out");

int main(){
    int a,b;
    in>>a>>b;
    out<<a+b;


}