A number n is automorphic if n^2 ends in n.
For example: n=5, n^2=25
Create a function that takes a number and returns true if the number is automorphic, false if it isn't.
is_automorphic(5) ➞ true
is_automorphic(8) ➞ false
is_automorphic(76) ➞ trueN/A