Write a curried function (using lambdas) that accepts three string arguments and concatenates all in one string following the rules:
- String cases: in the result string, first and second arguments must be in lower cases and the third argument must be in upper cases.
- Order of arguments concatenation: first, third, second.
Solution format. You may write the result in any valid formats but with ; at the end.
An example of a curried function: x -> y -> ...;