Cod sursa(job #1001798)

Utilizator Alex2222Alexandru Alex2222 Data 26 septembrie 2013 08:59:59
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;
ifstream fin("suma.in");
ofstream fout("suma.out");
int a,b;
int main(){
    fin>>a>>b;
    fout<<a+b;
    return 0;
}