|
|
вернуться в форумhow do i submit in python Послано Light 22 фев 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'. |
|
|