def test(a, b=50): print a print b return 1, 2 test(*test(10, 20)) raw_input('1')