본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]23343번 JavaScript

by 현장 2021. 10. 30.

-코드

n = list(input().split())
if len(n) == 1:
    print('NaN')
elif n[0].isdigit() and n[1].isdigit():
    print(int(n[0]) - int(n[1]))
else:
    print('NaN')