What's the wrong with my code?????

Problem name :CHFINTRO
My code in python 3.6 :

N, r = map(int, input().split())
for x in range(N):
R = int(input())
if R > r:
print(“Good boi”)
else:
print(“Bad boi”)

The question clearly mentions atleast r, so your condition is wrong and it should br R >=r: print(“Good boi”)