4 lines
64 B
Text
4 lines
64 B
Text
def main(a):
|
|
b = (a + 5) * 6
|
|
c = 7 * (b + a)
|
|
return b + c
|