Cod sursa(job #2642953)
Utilizator | Data | 17 august 2020 20:55:43 | |
---|---|---|---|
Problema | BMatrix | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.3 kb |
#define MAX_NM 200
#include <fstream>
using namespace std;
ifstream fin("bmatrix.in");
ofstream fout("bmatrix.out");
int x = 1;
int main()
{
for (int i = 1; i <= 64000000; ++i)
{
x += x;
if (x == 0)
{
x = 1;
}
}
fin.close();
fout.close();
return 0;
}