library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub shibh308/library

:warning: lib/functions/lcm.cpp

Code

auto lcm = [gcd](i64 x, i64 y){
	return x * y / gcd(x, y);
};
#line 1 "lib/functions/lcm.cpp"
auto lcm = [gcd](i64 x, i64 y){
	return x * y / gcd(x, y);
};
Back to top page