시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 (추가 시간 없음) 1024 MB60339734074.236%

문제

JavaScript is one of the most important computer languages now. It is high-level and multiparadigm. It supports functional and imperative programming styles. However, the ICPC World Finals does not offer JavaScript for problem solving.

JavaScript is considered as a weakly typed language. It sometimes implicitly converts values of one type into another type. For example, the minus operator (-) does not have any meaning on strings; it is defined to operate on numbers. When the minus operator is applied on two strings, JavaScript will convert the operands from strings into numbers and then apply the minus operation. That is why "2" + "2" - "2" evaluates to 20 in JavaScript. Moreover, JavaScript converts a string into NaN (Not-a-Number) if the string does not represent a number. If any operand of a minus operation is NaN, then the result of the operation must be NaN. For example, "a" + "2" is NaN.

Given two strings x and y, please write a program to compute the result of x - y in JavaScript.

입력

There is only one line containing two space-separated non-empty strings x and y.

출력

Print the result of the minus operation (x - y) on one Line. If the result is an integer, please print it without the decimal point. If the result is not a number, please print NaN.

제한

  • x and y consist of only English letters and digits.
  • Both x and y have lengths less than 6.
  • If x contains an English letter, then you may assume that JavaScript converts x into NaN.
  • If y contains an English letter, then you may assume that JavaScript converts y into NaN.
  • You may assume that the result is not a number if it is not an integer.

예제 입력 1

22 2

예제 출력 1

20

예제 입력 2

a 2

예제 출력 2

NaN

예제 입력 3

12345 a1a2a

예제 출력 3

NaN