题解 | #kiki算数#
kiki算数
https://www.nowcoder.com/practice/bcaf710fb58a44e1b678a890e6e90d7c
a,b = map(int,input().split())
c = a + b
if c >= 100:
c = str(c)[-2:]
if c[0] == '0':
c = c[-1]
print(c)
kiki算数
https://www.nowcoder.com/practice/bcaf710fb58a44e1b678a890e6e90d7c
a,b = map(int,input().split())
c = a + b
if c >= 100:
c = str(c)[-2:]
if c[0] == '0':
c = c[-1]
print(c)
相关推荐