Python 3.13.3 (tags/v3.13.3:6280bb5, Apr 8 2025, 14:47:33) [MSC v.1943 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
DreamPie 1.2.1
>>> bin(174)
0: '0b10101110'
>>> int('10101110', 2)
1: 174
>>> int('10101111', 2)
2: 175
>>> int('10101000', 2)
3: 168
>>> int('10100000', 2)
4: 160
>>> 174 << 5
5: 5568
>>> bin(5568)
6: '0b1010111000000'
>>>
>>>