Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
[UVa 10346] Peter's Smoke
Imran2544
Nov 4th, 2018
177
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++
0.28 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include<bits/stdc++.h>
using
namespace
std
;
int
main
(
)
{
int
n, k
;
while
(
cin
>>
n
>>
k
)
{
int
b
=
0
, s
=
0
;
while
(
n
>
0
)
{
s
+
=
n
;
b
+
=
n
;
n
=
b
/
k
;
b
=
b
%
k
;
}
cout
<<
s
<<
endl
;
}
return
0
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
48 min ago | 9.18 KB
ᴛᴡᴏ ɪɴ ᴏɴᴇ, ᴏʀ ᴏɴᴇ ɪɴ ᴛᴡᴏ.
CSS | 1 hour ago | 4.28 KB
Untitled
2 hours ago | 11.87 KB
Untitled
4 hours ago | 8.83 KB
[IN REVIEW] PS/PM: Grace Edits
6 hours ago | 0.81 KB
Untitled
6 hours ago | 11.06 KB
[IN REVIEW] PS/PM: PM - Post Launch
7 hours ago | 0.72 KB
[IN REVIEW] PS/PM: PM - Launch Checklist
7 hours ago | 0.73 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!