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