The Holmes children are fighting over who amongst them is the cleverest.
Mycroft asked Sherlock and Eurus to find value of f(n), where f(1) = 1 and for n ≥ 2, f(n) is the number of distinct ordered positive integer pairs (x, y) that satisfy x + y = n and gcd(x, y) = 1. The integer gcd(a, b) is the greatest common divisor of a and b.
Sherlock said that solving this was child’s play and asked Mycroft to instead get the value of
. Summation is done over all positive integers d that divide n.
Eurus was quietly observing all this and finally came up with her problem to astonish both Sherlock and Mycroft.
She defined a k-composite function F k(n) recursively as follows:

She wants them to tell the value of F k(n) modulo 1000000007.
Input
A single line of input contains two space separated integers n (1 ≤ n ≤ 1012) and k (1 ≤ k ≤ 1012) indicating that Eurus asks Sherlock and Mycroft to find the value of F k(n) modulo 1000000007.
Output
Output a single integer — the value of F k(n) modulo 1000000007.
Examples
input
7 1
output
6
input
10 2
output
4
Note
In the first case, there are 6 distinct ordered pairs (1, 6), (2, 5), (3, 4), (4, 3), (5, 2) and (6, 1) satisfying x + y = 7 and gcd(x, y) = 1. Hence, f(7) = 6. So, F 1(7) = f(g(7)) = f(f(7) + f(1)) = f(6 + 1) = f(7) = 6.
Solution:
#include <bits/stdc++.h>
using namespace std;
const int N = 1000010;
vector <int> primes;
long long phi(long long n) {
long long res = n;
for (int it = 0; it < (int) primes.size(); it++) {
long long p = primes[it];
if (p * p > n) {
break;
}
if (n % p == 0) {
res = res / p * (p - 1);
while (n % p == 0) {
n /= p;
}
}
}
if (n > 1) {
res = res / n * (n - 1);
}
return res;
}
const int md = 1000000007;
bool prime[N];
int main() {
for (int i = 2; i < N; i++) {
prime[i] = true;
}
for (int i = 2; i < N; i++) {
if (prime[i]) {
for (int j = i + i; j < N; j += i) {
prime[j] = false;
}
}
}
primes.clear();
for (int i = 2; i < N; i++) {
if (prime[i]) {
primes.push_back(i);
}
}
long long n, k;
cin >> n >> k;
k = (k + 1) / 2;
while (n > 1 && k > 0) {
n = phi(n);
k--;
}
cout << (n % md) << endl;
return 0;
}