Cod sursa(job #2389140)
Utilizator | Data | 26 martie 2019 20:37:19 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.33 kb |
#include <fstream>
using namespace std;
ifstream fin( "adunare.in" );
ofstream fout( "adunare.out" );
int main()
{
int
A
,
B;
fin
>>
A
>>
B;
;
fout
<<
A
+
B
;
return 0;
}