16진수 수를 입력받아서 10진수로 출력하는 프로그램을 작성하시오.
python의 int함수를 사용하여 변환한다.
if __name__ == '__main__': print(int(input(), 16))
파이썬의 int함수를 사용하면 쉽게 풀 수 있다.