import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; void main() { auto nm = readln.split.to!(long[]); auto N = nm[0]; auto M = nm[1]; long f1 = 0; long f2 = 1; foreach (_; 2..N) { auto f3 = (f1 + f2) % M; f1 = f2; f2 = f3; } writeln(f2); }