Python Solution
i = 4
d = 4.0
s = 'HackerRank '
# Declare second integer, double, and String variables.
i2 = None
d2 = None
s2 = None
# Read and save an integer, double, and String to your variables.
i2 = int(input())
d2 = float(input())
s2 = str(input())
# Print the sum of both integer variables on a new line.
print(i + i2)
# Print the sum of the double variables on a new line.
print(d + d2)
# Concatenate and print the String variables on a new line
# The 's' variable above should be printed first.
print(s + s2)