This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mayur78
Recipients mayur78
Date 2009-11-25.07:09:52
SpamBayes Score 0.020757524
Marked as misclassified No
Message-id <1259132995.34.0.685244860607.issue7393@psf.upfronthosting.co.za>
In-reply-to
Content
I am getting error of sum of two nos. the output should give addition 
of two numbers,but instead it is displaying 2 nos. side-by-side.I have 
pasted the program and output for the same.

print "Please give a number: "
a = input()
print "And another: "
b = input()
print "The sum of these numbers is: "
print a + b

output should be a=21,b=21, a+b=42
whereas it is showing 2121.
History
Date User Action Args
2009-11-25 07:09:55mayur78setrecipients: + mayur78
2009-11-25 07:09:55mayur78setmessageid: <1259132995.34.0.685244860607.issue7393@psf.upfronthosting.co.za>
2009-11-25 07:09:53mayur78linkissue7393 messages
2009-11-25 07:09:53mayur78create