Task Complete the code in the editor below. The variables , , and are already declared and initialized for you. You must: Declare variables: one of type int , one of type double , and one of type String . Read lines of input from stdin (according to the sequence given in the Input Format section below) and initialize your variables. Use the operator to perform the following operations: Print the sum of plus your int variable on a new line. Print the sum of plus your double variable to a scale of one decimal place on a new line. Concatenate with the string you read as input and print the result on a new line. Input Format The first line contains an integer that you must sum with . The second line contains a double that you must sum with . The third line contains a string that you must conc...
Print Hello, World. on the first line, and the contents of input string in the second line in python
python:- inputString = raw_input() print 'Hello, World.' print inputString