Is there any way to input multiple (assuming we know the amount) integers in Rust like we do in C++? For example, this is C++ code:
int a, b, c;
cin >> a >> b >> c;
I know I can read them in tuple and then unpack, but I think there must be a way to do it like in C++.