0
How to insert a newline between those two results ?
a = input ("first number input") b = input ("second number input") print int(a) + int(b) here print int(a) - int(b)
12 Respostas
+ 2
just type .......
print()
for a blank line...
+ 2
did you gave it to me.
+ 1
I think forward slash together with n
+ 1
sorry I was supposed to say backward slash together with n
+ 1
print 'int(a)+int(b) \n int(a)-int(b)'
+ 1
a = input("enterA")
b = input("enterB")
print(int(a)+int(b))
print ("\n")
print (int(a)-int(b))
+ 1
whome two...
0
I tried it just now but because it's under quotes it reads it like if it was text. (I'm french, so don't worry if you find errors.)
0
Thank you very much !
0
to you two.
0
a = input()
b = input()
print(int(a) + int(b),"\n",int(a) - int(b))
0
please ask some another questions