diff --git a/Task/vinoy/1st question b/Task/vinoy/1st question new file mode 100644 index 0000000..46c65ff --- /dev/null +++ b/Task/vinoy/1st question @@ -0,0 +1,9 @@ +a=input("word1") +b=input("word2") +if len(a)!=len(b): + print("These words are not anagrams") +else: + if sorted(a)==sorted(b): + print("These words are anagrans") + else: + print("These words areĀ notĀ anagrams")