#include<assert.h>

$input int n=10;

int main(){
  for (int i=0; i<n; i++)
	  assert(i<n);
}
