I tried to get the output of python as
def main():
i=raw_input()
a=input()
print(i*a)
main()
input:hello, 2. output: "hellohello" but i am getting output as output:" hello hello " .how can i get the two strings as output continuously in same line from one print statement.for example:"hellohello "