4 lines
75 B
Text
4 lines
75 B
Text
def main(field a, field b) -> field {
|
|
field c = a + b;
|
|
return c;
|
|
}
|