#include <iostream>
#include <chrono>
#include <thread>
using namespace std;
constexpr auto MAX_NUM_LEN = 10;
int main() {
string a_num[MAX_NUM_LEN];
cout << "Type your full ID" << endl;
cin.getline(a_num, MAX_NUM_LEN, '.');
cout << "\nyour input is: " << a_num;
}
Link to my embedded image of the program i did in VS code [1]: https://i.stack.imgur.com/TM7BC.jpg