Create a function that takes two number strings and returns their sum as a string.
add("111", "111") ➞ "222" add("10", "80") ➞ "90" add("", "20") ➞ "Invalid Operation"
Return "Invalid Operation" If either input is "" or null.
"Invalid Operation"
""
null