You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
343 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
/*
NOIP
CCF
__int1282^127~2^1271
__int128
*/
typedef long long LL;
LL a, b, p, res;
int main() {
cin >> a >> b >> p;
cout << (LL)(__int128(a) * (__int128)b % p) << endl;
return 0;
}