Cod sursa(job #1470083)

Utilizator razvan700razvan popescu razvan700 Data 10 august 2015 13:02:01
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
int main()
{
    int a,b,s;
    fin>>a>>b;
    s=a+b;
    fout<<s;
    return 0;
}