4 lines
73 B
Text
4 lines
73 B
Text
def multiply(x as int, y as int):
|
|
return x * y
|
|
|
|
print multiply(3, 2)
|