5 lines
103 B
Text
5 lines
103 B
Text
def main(field a) -> field {
|
|
field b = (a + 5) * 6;
|
|
field c = 7 * (b + a);
|
|
return b + c;
|
|
}
|