Cod sursa(job #2207481)
Utilizator | Data | 25 mai 2018 19:29:16 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long int A,B,s;
fin>>A>>B;
s=A+B;
fout<<s;
return 0;
}