Check if two strings are anagrams (case-insensitive).
Implement this function:
def is_anagram(s1: str, s2: str) -> bool:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: s1, s2.
Input
'listen'
'silent'
Output
True