#!/usr/bin/python3

def main():
	x=hex(11816)
	print(x)
	y=oct(11816)
	print(y)
	z=bin(11816)
	print(z)

if __name__=="__main__":
	main()
