1a=input()
2b=input() #reading two strings from user
3c1=0
4c2=0
5#using for loop
6for i in a:
7 c1=+1
8for j in b:
9 c2=+2
10return c1>c2 #shows true if len of string a is grater than b else it will show false
11return c1==c2 #shows true if len of a and b are same
12