6 lines
137 B
Text
6 lines
137 B
Text
def main(field a) -> (field):
|
|
field b = (a + 5) * 6
|
|
2 * b == a * 12 + 60
|
|
field c = 7 * (b + a)
|
|
c == 7 * b + 7 * a
|
|
return b + c
|