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.
|
|
|
|
#include <bits/stdc++.h>
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
NOIP
|
|
|
|
|
CCF 组织的赛事都可以了
|
|
|
|
|
__int128取值范围−2^127~2^127−1
|
|
|
|
|
__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;
|
|
|
|
|
}
|