blob: 23577d47e0ada5291675f3d9465e114433b7b209 [file] [log] [blame]
namespace {
int calc(int j)
{
if (j==0) return 0;
return calc(j-1)*j % 17;
}
}
int main(void)
{
return calc(25);
}