Advertisement
sigmachto

Untitled

Jun 29th, 2023
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. #2)
  2. x = input()
  3. y = input()
  4. if x == y:
  5. print('True')
  6. else:
  7. print("False")
  8. #Ответ:False
  9.  
  10. #3)
  11. a = int(input())
  12. b = int(input())
  13. c = int(input())
  14. d = int(input())
  15. print(min(a,b,c,d))
  16. #Ответ:5
  17.  
  18. #4)
  19. a = int(input())
  20. b = int(input())
  21. c = int(input())
  22. d = int(input())
  23. print(max(a,b,c,d))
  24. #Ответ: 30
  25.  
  26.  
  27. #5)
  28. a = int(input())
  29. b = int(input())
  30. c = int(input())
  31. if max(a,b,c) < a + b + c - max(a,b,c):
  32. print('True')
  33. else:
  34. print('False')
  35. #Ответ: True
  36.  
  37. #6)
  38. a = int(input())
  39. b = int(input())
  40. c = int(input())
  41. if max(a,b,c) <= a + b + c - max(a,b,c):
  42. if a == b == c:
  43. print('равносторонний')
  44. elif max(a,b,c) >= a + b + c - max(a,b,c):
  45. print('вырожденный')
  46. elif a == b or a == c or b == c:
  47. print('равнобедренный')
  48. else:
  49. print('разносторонний')
  50. else:
  51. print('не сущ. треугол.')
  52. #Ответ: вырожденный
  53.  
  54.  
  55. #7)
  56. a = int(input())
  57. b = int(input())
  58. c = int(input())
  59. d = int(input())
  60. if max(a,b) < min(c,d):
  61. print(0)
  62. else:
  63. print(max(a,b) - min(c,d) + 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement