1. 使用逗号分隔的方式:
a, b, c = map(int, input().split(','))
2. 使用空格分隔的方式:
a, b, c = map(int, input().split())
3. 使用列表推导式:
values = [int(x) for x in input().split()]
4. 使用`input()`函数结合`str.split()`方法:
values = list(map(int, input().split(',')))
请根据你的具体需求选择合适的方法。