Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
BuglessCoder authored Dec 1, 2016
1 parent 971b8d0 commit e9b9202
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 判断三角形.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
a=3
b=8
c=5
if (a+b>c) and (a+c>b) and (b+c>a):
print('YES')
else:print('NO')

0 comments on commit e9b9202

Please sign in to comment.