As Mehdi Algholipour wrote i wanted to
1.Get string from input
2.Separate input to Integer numbers
3.Save them into Array
cout << "Give me some integers separated with space";
cin >> string; // example input 10 210 300 510
//..some code that seperate input to integer numbers and save them to Array
//EXPECTED RESULT: Array[0]=10 Array[1]=210 etc...