Hi there people!I'm new here, so if this post conflicts with any of the laws of this forum for any reason, I apologize in advance.I'm trying to write a function that reads from the user a set of integers separated by ',' (commas), but I'm having difficulty isolating the integers from the characters. I'm not sure if I should do it using a "for" or "while" loop,...So if the input is something like: {100,20,50}I should be able to store the integers 100 20 50Anybody got any idea how to do that??I would really appreciate the help!!Thanks.