n=input("输入第一个数:") m=input("输入第二个数:") x=input("输入第三个数:") if n==m: print("第一个数和第二个数重复") if n==x: print("第一个数和第三个数重复") if m==x: print("第二个数和第四个数重复")