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