Computer Science, asked by venkattanigundala, 4 months ago

write a program to accept a number and check wether it is greater than 5 or not.use if else and write two out put​

Answers

Answered by gayathrisrividhya20
0

Answer:

n=int(input())

if(n>5):

print("yes")

else:

print("not")

output:

1. 7

yes

2. 3

not

Similar questions