Home
Volumes
Contests
Sections
Forums
Users
Print
Help
About
Forums
>
Discussion of problems
> topic:
Problem "Question 3"
There is a contest!
В настоящий момент идёт турнир. Некоторая информация и функции сервера недоступны до его окончания.
imesecan
Nov.15.2013 at 09:49:09 AM
0
This number is too big to read with integer or long long,
you need to read char by char and then convert every char to integer.
http://stackoverflow.com/questions/5029840/convert
...
char a = '4';
int ia = a - '0';
www.contester.ru