function hi (a, b) {
return a * b
}
function hello (a, b) {
return a + b
}
var a = hi(2, 3)
hello(a, 2)
2
6
3
9
5
چلے
12
1
7
8
4
?!?