In the example below I am trying to print the three variables I put in. If I try to separate the different inputs with commas, it gives me this error message:
ValueError: invalid literal for int() with base 10: '20,20,20'
If you need to know more, I'm happy to help.
A, B, C = int(input("how do I do this?"))
print(A)
print(B)
print(C)