def main()

in type_check.py [0:0]


def main():
    a = 1
    b = 1.5
    print(type_check(a))
    print(type_check(b))

    a, b = input().split()

    a = another_convert_type(a)
    try:
        b = convert_type(b)
    except ValueError:
        print("えらー")
        return

    print(a)
    print(b)