提交时间:2025-03-21 14:54:52
运行 ID: 313212
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)