def test(x):
    return x
y = test(1)*2 + test(3)*4 + test(5)*6
print y
