Cod sursa(job #1595547)
Utilizator | Data | 10 februarie 2016 13:07:44 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long long a, b;
cin>>a>>b;
fout<<a+b;
}