5 lines
92 B
Haskell
5 lines
92 B
Haskell
getSquaredSum :: Int-> Int-> Int
|
|
getSquaredSum x y = g x + h y
|
|
where
|
|
g a = a*a
|
|
h b = b*b
|