1def test(x):
2    """
3    >>> test(3)
4    3
5    """
6    return retinput(x)
7
8cdef inline int retinput(int x):
9    o = x
10    return o
11