Consider your program needs to get a few parameters to start working. For example, you want to specify a path on your drive where the program can store output files.
Write a program that takes command-line arguments in the format:
parameter1 value1 parameter2 value2 ...
and outputs them in the standard output in the format:
parameter1=value1
parameter2=value2
...
It is guaranteed, that each parameter is followed by a value.
Please, do not rename the provided class Problem.