CodeforcesMay 20, 2025

Beautiful Divisors

Hazrat Ali

Codeforces

Recently Luba learned about a special kind of numbers that she calls beautiful numbers. The number is called beautiful iff its binary representation consists of k + 1 consecutive ones, and then k consecutive zeroes.

Some examples of beautiful numbers:

  • 12 (110);
  • 1102 (610);
  • 11110002 (12010);
  • 1111100002 (49610).

More formally, the number is beautiful iff there exists some positive integer k such that the number is equal to (2k - 1) * (2k - 1).

Luba has got an integer number n, and she wants to find its greatest beautiful divisor. Help her to find it!

Input

The only line of input contains one number n (1 ≤ n ≤ 105) — the number Luba has got.

Output

Output one number — the greatest beautiful divisor of Luba's number. It is obvious that the answer always exists.

Examples
Input
3
Output
1
Input
992
Output
496


Solution

#include <bits/stdc++.h>
using namespace std;

int main() {
  int a;
  cin >> a;
  int temp = 1;
  int c = 1, b = 0;
  while (b <= a) {
    if (b != 0 and a % b == 0) {
      temp = b;
    }
    b = (pow(2, c) - 1) * pow(2, c - 1);
    c++;
  }
  cout << temp << endl;
  return 0;
}




Comments