Kirill Lipatov (Leency) 27cb400814 cmm move small aps into cmm/misc folder
git-svn-id: svn://kolibrios.org@7911 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-05-11 07:58:18 +00:00

10 lines
183 B
Python

def test(x):
f = ['0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F']
txt = ""
while x:
txt = f[x&0xF]+txt
x = x>>4
return txt
stdout(test(0x123454))