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