Untitled

Anonymous
c_cpp
01/14/2024 9:09 AM
160 B
18
Indexable
#include <iostream>
using namespace std;
int main()
{
	int N;
	cin >> N;
	int b = (N & (N - 1));
	cout << b;
}
Editor is loading...
Leave a Comment