Create a function that takes a string and returns True or False, depending on whether the characters are in order or not.
is_in_order("abc") ➞ True
is_in_order("innokodakademija") ➞ False
is_in_order("123") ➞ True
is_in_order("xyzz") ➞ True
You don't have to handle empty strings.