image

6025번

a, b = input().split(' ')
print(int(a)+int(b))

6026번

a = input()
b = input()
print(float(a)+float(b))

6027번

value = int(input())
print('%x' %value)

6028번

value = int(input())
print('%X' %value)

6029번

value = int(input(), 16)
print('%o' %value)

6030번

print(ord(input()))

6031번

print(chr(int(input())))

6042번

value = float(input())
print(format(value, '.2f'))