1 2 contract MultiplicationServer = 3 4 entrypoint multiply(x : int, y : int) = 5 switch(Call.value >= 100) 6 true => x * y 7