6 lines
84 B
Plaintext
6 lines
84 B
Plaintext
|
fn f(a, b, c, d, e, f) {
|
||
|
a - b * c - d * e - f
|
||
|
}
|
||
|
|
||
|
print(f(100, 5, 2, 9, 6, 32))
|