// 引数同士を掛けた値を返す
int
mul_(
int
*a,
int
*b ){
return
*a * *b; }