-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfun.py
More file actions
61 lines (56 loc) · 1.16 KB
/
Copy pathfun.py
File metadata and controls
61 lines (56 loc) · 1.16 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# print("Anoop" ,"Kumar" ,"hello" ,"Bye" ,end="*")
# print("anoop" ,end=" ")
# print("Radhe radhe")
# print("Anoop" ,"Kumar" ,"hello" ,"Bye" ,sep="*")
# print("anoop" ,"cool",sep=" musiclover ")
# print("Radhe radhe")
# print(20%4)
# print(20%3)
# c = 40
# a = 4
# c**=a
# print(c)
#x = 5
# y = 3
# z = 0
#without using 3rd variable
# swaping btween x and y
# x = x+y
# y = x-y
# x = x - y
# print(x,y,z)
# # swaping btween y and z
# y = y+z
# z = y-z
# y = y- z
# print(x,y,z)
# using 3rd variable
# swaping btween x and y
# s = x
# x = y
# y = s
# print(x, y, z)
# # swaping btween y and z
# t = y
# y = z
# z = t
# # print(x, y, z)
# age = int(input("Enter your age\n"))
# age_re=18
# print(age>=age_re,"you can vote")
# # print(age<age_re,"you can't vote")
# a = int(input("enter x1 cordinate\n"))
# b = int(input("enter y1 cordinate\n"))
# c = int(input("enter x2 cordinate\n"))
# d = int(input("enter y2 cordinate\n"))
# D = ((a-c)**2 +(b-d)**2)**0.5
# print(D)
n = int(input())
# a= n in range(2,5)
# print(a)
if n in range (2,5):
print("wired")
elif n in range (5,20):
print("not wired")
else:
pass