Cod sursa(job #1182314)

Utilizator L3ulBogdan-Constantin Enache L3ul Data 6 mai 2014 07:48:18
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <fstream>
#include <iostream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
    int a,b,s;
    fin>>a>>b;
    s=a+b;
    fout<<s;
    fout.close();
    return 0;
}