提交时间:2025-03-21 15:00:15

运行 ID: 313213

a,b=map(int,input().split()) if a==b: print(100) elif a%10==b%10 or a//10==b//10: print(10) else: print(0)