import std.algorithm; import std.array; import std.conv; import std.math; import std.stdio; import std.string; import std.range; int readint() { return readln.chomp.to!int; } int[] readints() { return readln.split.map!(to!int).array; } void main() { int n = readint(); int k = readint(); int nth = 1; writeln(nth); for (int i = 0; i < n - 1; i++) { int s = readint(); if (s > k) { nth++; } writeln(nth); } }