I have a vector, length of it is n. A function looks like
int foo(int x_1, int x_2, ..., int x_n)
. Are there any ways to turn this vector to a nice object?
I don't know what I should do
Python has the simple construction which helps to separate smth. May be C++ has the same one?
a, b = map(int, input().split())
I expect for a kind of this construction