Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
string input = Console.ReadLine();
string[] intlist = input.Split(new char[] {',', ' '});
	
foreach(string item in intlist)
{
  Console.WriteLine(Convert.ToInt32(item));
}
		
		
	integer :: I,j,k ,l(3)
read(*,*) I, j, k, l
		
		
	read <$> getLine :: IO [Integer]
-- reading space separated list of ints
map read . words <$> getLine :: IO [Int]
		
		
	process.stdin.on('data', processLine)
function processLine (line) {
  const string = line + ''
  console.log(string)
}
		
		
	const ints = await new Promise(resolve => {
  let string = ''
  process.stdin
    .on('data', data => string += data.toString())
    .on('close', () => resolve(string.split('\n').map(line => Number.parseInt(line))))
})
		
		
	List<Integer> numbers = new ArrayList<>();
int x, y, n = s.length(), c, i;
boolean b;
for (x = y = 0; y != n; ++y) {
    c = s.charAt(y);
    b = y + 1 == n;
    if (c == '\r' || c == '\n' || b) {
        if (b) ++y;
        i = parseInt(s.substring(x, y));
        numbers.add(i);
        if (b) break;
        b = c == '\r';
        x = y + 1;
        if (b && s.charAt(x) == '\n')
            ++x;
        y = x - 1;
    }
}
		
		
	(read)
		
		
	@x = map {chomp; $_} <>;
		
		
	list(map(int, input().split()))
		
		
	numbers = [int(x) for x in input().split()]
		
		
	STDIN.read.split.map(&:to_i)