problem in concatenation between strings and variables

you need to convert int and float to string type, you cant do 'add' operation with String and numerals.

You could try the below approach.

String two = stringOne + String(hum);

Check this link about String constructor.