| 9 | using namespace std; |
| 10 | |
| 11 | int main() |
| 12 | { |
| 13 | long long int tc, ts, js, t, c; |
| 14 | cin >> tc; |
| 15 | while(tc--) |
| 16 | { |
| 17 | cin >> ts; |
| 18 | t=ts; |
| 19 | c=0; |
| 20 | while(t%2==0) |
| 21 | { |
| 22 | c++; |
| 23 | t=t/2; |
| 24 | } |
| 25 | c++; |
| 26 | js=pow(2,c); |
| 27 | c=ts/js; |
| 28 | cout << c << endl; |
| 29 | } |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected