Cod sursa(job #2989378)
Utilizator | Data | 6 martie 2023 15:31:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
long int a,b;
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
f>>a>>b;
a+b<200000000;
g<<a+b;
return 0;
f.close();
g.close();
}