PROGRAMMING:String splitting
Write a program to count the sum of several integers in each line of string. The separator between integers in each line of string may have [,;]( Comma, space, semicolon), how many lines there are.
###Input format:
A string consisting of several lines of integers, each of which is not more than 255 long, separated by commas or spaces or semicolons. The number of tests ensures that there is at least one line of data, the number of lines is unlimited, and the integer data in the string is legal and valid.
###Output format:
Corresponding to the output of the original input string (character sequence in a line), the colon is followed by the sum of all integers.
###Input example:
```in
1; 2 ,3
2 3; four
10,20 30; forty
nine
```
###Output example:
```out
1; 2 ,3:6
2 3; 4:9
10,20 30; 40:100
9:9
```
answer:If there is no answer, please comment
###Input format:
A string consisting of several lines of integers, each of which is not more than 255 long, separated by commas or spaces or semicolons. The number of tests ensures that there is at least one line of data, the number of lines is unlimited, and the integer data in the string is legal and valid.
###Output format:
Corresponding to the output of the original input string (character sequence in a line), the colon is followed by the sum of all integers.
###Input example:
```in
1; 2 ,3
2 3; four
10,20 30; forty
nine
```
###Output example:
```out
1; 2 ,3:6
2 3; 4:9
10,20 30; 40:100
9:9
```
answer:If there is no answer, please comment