Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
92809 |
徐梓涵 |
07判断正负数 |
Python3 |
Wrong Answer |
32 MS |
3748 KB |
65 |
2024-10-06 14:50:00 |
Tests(0/10):
Code:
a=int(input())
if a<0:
print('YES')
else:
print('NO')
Run Info:
------Input------
6468
------Answer-----
YES
------Your output-----
NO