怎么判断三个整数是否相等?
a, b, c = map(int, input().split()) 1、输入一个数字直接 m = int(input()) 2、输入两个数字就是 m, n = map(int, input().split()) 3、三个及三个以上就和两个的类似: a, b, c = map(int, input().split()) a, b, c, d = map(int, input().split())