02-09-01 i/o - input
अब Quizwiz के साथ अपने होमवर्क और परीक्षाओं को एस करें!
Write a statement that reads a string value from standard input into firstWord.
firstWord = input()
Given a variable named line1, read the next line from stdin and save it in line1.
line1 = input()
Write a statement that reads a float value from standard input into the variable temperature.
temperature = eval(input())
Write a statement that reads an integer value from standard input into a variable called val.
val = eval(input())