Notice: Undefined offset: 2 in /home2/icentarb/public_html/icentar/classes/class.permissions.php on line 735
#include #include using namespace std; void dek_u_bin(long long d) {int ostatak; if (d <= 1) {cout << d; return;} ostatak=d%2; dek_u_bin(d/2); cout << ostatak; } int main() { long long deka