Input one string and one integer, make sure they are on different lines.
Print out the string and integer in one line separated by a space.
#input variable for string
str_inp = str(input())
#input variable for integer
int_inp = int(input())
#if we include both variables in one line of printing it will be printed in one line
print(str_inp, int_inp)
#this code co nsidered by expert Suhrob Umarov
Comments
Leave a comment