Challenge
Given input in the form <n1>, <n2> where number can be -1, 0, or 1, return the corresponding cardinal direction. Positive numbers move East in the x-axis and South in the y-axis, Negative numbers move West in the x-axis and North in the y-axis.
Output must be in the form South East, North East, North. It is case-sensitive.
If the input is 0, 0, your program must return That goes nowhere, silly!.
Sample Input/Outpot:
1, 1 -> South East
0, 1 -> South
1, -1 -> North East
0, 0 -> That goes nowhere, silly!
This is code-golf, the shortest answer in bytes wins.