A.Staklash #1:
a=int(input())*4
print(a//64)
print(a%64)
print(a)
B.Staklash #2
a = int(input())*4
c = a//64
d = a%64
if d == 0:
print(f"{c*'|64'}|")
else:
print(f"{c*'|64'}|{d}|")
C.Staklash #3
a=input().casefold()
b=int(input())
c=['sword','axe','pickaxe','shovel','hoe','armor','trident','totem of undying']
d=['snowball','bucket','egg','honey bottle','ender pearl','armor stand']
e=['decoration block','building block','door','spawn egg','tnt','arrow']
m=[]
if a in c:
print(f'{b*"|1"}|')
elif a in d:
for i in range(b//16):
m.append('16')
if b%16!=0:
m.append(str(b%16))
print(f"|{'|'.join(m)}|")
else:
for i in range(b//64):
m.append('64')
if b%64!=0:
m.append(str(b%64))
print(f"|{'|'.join(m)}|")
D.RUN & CAN
a=int(input())
c=['rotten flesh', 'gunpowder', 'ghast tear', 'magma cream', 'string', 'blaze rod', 'nether star', 'coal','stone sword', 'slimeball', 'gold nugget', 'golden sword', 'golden axe', 'copper ingot', 'ender pearl', 'phantom membrane', 'bone', 'arrow', 'poisoned arrow', 'saddle']
for i in range(a):
b=input()
if b in c:
print('RUN')
else:
print('CAN')
E.NETHER PORTAL
x,y,z=map(int,input().split())
print(x//8,y,z//8)
F.DROP A SKULL
a=input().lower()
if a in ["skeleton", "wither skeleton","stray"]:
print("SKULL")
else:
print("GO TO SCHOOL")
G.CHAT #1
a=int(input())
if a>=255:print('ValueError')
else:
if a%2==0:
print(a//2*'<> '+'<')
else:
print(a//2*'<> '+'<>')
H.CHAT #2
a=input()
b=input()
c,h=map(int,input().split())
e=input()
m=["o'zi", "eng yaqin", "barcha player", "barcha entity","tasodifiy"]
d=["@s","@p","@a","@e","@r"]
if h>255:
print('ValueError')
else:
print("/effect",d[m.index(a)],b,c,h,e)
I.TRADE #1
a,b=map(int,input().split())
if a<65:
print(1)
else:
print("Are you kidding me?")
J.TRADE #2
from math import *
a,b,c=map(int,input().split())
print(a*(ceil(c/b)))
K.Pechka vasvasasi
a,b,c,d=map(int,input().split())
e=list(map(int,input().split()))
m=[b,c,d]
m.sort()
d=(m[-1]**2+m[-2]**2)**0.5
for i in e:
if i<=d:
print("sig'adi",end=' ')
else:
print('uvol',end=' ')