This is Java
In this problem we will write a program that asks the user toenter a) The user's first name and b) a series of integersseparated by commas. The integers may not include decimal pointsnor commas. The full string of numbers and commas will not includespaces either, just digits and commas. An example of valid inputstring is:Â Â Â Â Â Â Â 7,9,10,2,18,6
The string must be input by the user all at once; do not use aloop to read each number one at a time. The purpose of thisassignment is to learn to use the String methods. The program willcalculate and display the following data:
- User name
- Sum of all numbers in the string
- A count of how many numbers were entered
- Average of all the numbers in the string expressed to onedecimal place.