13.7 심사문제
, 장 호영님이 작성Price = int(input())
coupon = input()
Cash3000 = 3000
Cash5000 = 5000
if coupon == Cash3000:
Real_Price = Price - coupon
print(Real_price)
if coupon == Cash5000:
Real_price = price - coupon
print(Real_price)
이렇게 해도 되지 않나요..? 뭐가 틀린지 잘 모르겠습니다.