-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfun_02.py
More file actions
38 lines (35 loc) · 858 Bytes
/
Copy pathfun_02.py
File metadata and controls
38 lines (35 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# # if __name__ == '__main__':
# meal_cost = float(input().strip())
# tip_percent = int(input().strip())
# tip = (meal_cost*tip_percent)/100
# tax_percent = int(input().strip())
# tax = (meal_cost*tax_percent)/100
# solve = (meal_cost, tip_percent, tax_percent)
# print(solve)
# total_cost = (meal_cost+tip+tax)
# a = round(total_cost)
# print(a)
# print(round(total_cost))
# a = float(input())
# print(round(a))
# n = int(input().strip())
# if n>20:
# print("Not Weird")
# elif n%2 !=0:
# print("Weird")
# elif n%2 == 0:
# print("not Weird")
# elif n/2 ==0:
# if n in range(1,6):
# print("Not Weird")
# elif n in range(5,20):
# print("Weird")
# else:
# print("Not Weird")
# else:
# pass
n = int(input(""))
if n in range(2,5):
print("yes")
else:
print("no")