blob: 2689f9d2d9d41f687e9414e8e5a3849ecf3c3aed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cmath>
#include <unordered_map>
#include <unordered_set>
#include <string>
#include <sstream>
#include <climits>
#define x first
#define y second
#define pub push_back
#define mp make_pair
#define ll long long
using namespace std;
int x, y;
int main(void) {
cin >> x >> y;
int ans = x;
while (x >= y) {
ans += x / y;
x = x / y + x % y;
}
cout << ans;
return 0;
}
|