|
|
back to boardhow do i submit in python Posted by Light 22 Feb 2014 13:54 a = input() b = input() a = int(a) b = int(b) c = a+b print c
this should be correct isn't it ? Re: how do i submit in python It is correct in Python 2, though explicit cast is excessive. In Python 3, use should add brackets after 'print'. |
|
|