Reformat some Python

Fix some very bizarrely laid-out code.

Input

def fed(j):
    n = sum([1000000000,
              200000000,
               30000000,
                4000000,
                 500000,
                  60000,
                   7000,
                    800,
                     90,
                     j])
    print('abc'+str(n)+'def')

Output

def fed(j):
    n = 1234567890 + j
    print('abc%ddef' % n)