9 lines
190 B
Plaintext
9 lines
190 B
Plaintext
|
|
||
|
func main() begin
|
||
|
var a, b
|
||
|
a := 1 + 2 + 4 + 5 + 6 + 7 + 8 + 9
|
||
|
b := (10 + 10 * 4) * (2 + 2 * (1 + 1)) / 10 + 2 * 5 + 6 / 3
|
||
|
|
||
|
if a = b then
|
||
|
print "The answer is", b
|
||
|
end
|