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