You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
define x(x, y) {
|
|
return x - y + 5
|
|
}
|
|
|
|
define y(y, x) {
|
|
return x(y, x) + x(x, y)
|
|
}
|
|
|
|
y(1, 4)
|
|
y(2, 4)
|
|
y(3, 4)
|
|
y(4, 3)
|
|
y(3, 2)
|