Problem 1: 2022 (100pts)

用数字和+*-运算符写一个最酷炫的表达式,来替换掉下面twenty_twenty_two函数中的下划线。

def twenty_twenty_two():
    """Come up with the most creative expression that evaluates to 2022,
    using only numbers and the +, *, and - operators.

    Expected result:
    >>> twenty_twenty_two()
    2022
    """
    return ______