#!/usr/bin/python3 # -*- coding: utf-8 -*- x: int = 256 while x != 0: x //= 2 print(x)