МКАД
unknown
c_cpp
2 years ago
202 B
12
Indexable
#include <iostream>
using namespace std;
int main() {
int v, t;
cin >> v >> t;
int s = v * t;
cout << (s % 109 + 109) % 109;
return 0;
}
/*
a b
(a % b + b) % b
*/
Editor is loading...