Please use Python
Write a program that will accept a stream of integers from the user, until the user inputs the same integer twice. At this point, the program should print out REPEAT!!.
******************************************************************************************
Please Upvote the answer as it matters to me a lot :)
*****************************************************************************************
As per HomeworkLib expert answering guidelines,Experts are supposed to
answer only certain number of questions/sub-parts in a post.Please
raise the remaining as a new question as per HomeworkLib
guidelines.
******************************************************************************************
numbers= set()
while True:
x= int(input())
flag=0
for y in numbers:
if y==x:
print("REPEAT")
flag=1
if flag==1:
break
numbers.add(x)

Please use Python Write a program that will accept a stream of integers from the user,...