Cod sursa(job #1980345)

Utilizator MihneaMihnea300Mihnea Andreescu MihneaMihnea300 Data 12 mai 2017 22:01:33
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>

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