Note

[codeup] 125. 당신의 사주를 봐 드립니다 1 본문

etc/Coding Test

[codeup] 125. 당신의 사주를 봐 드립니다 1

알 수 없는 사용자 2022. 1. 24. 01:59
728x90
a,b,c = map(int,input().split())
if (a-b+c)%10==0:
    print("대박")
else:
    print("그럭저럭")
a,b,c = map(int,input().split())
n = a-b+c
n2 = [int(n) for n in str(n)]
if n2[-1] == 0:
  print('대박')
else:
  print('그럭저럭')
Comments