#include<string.h>
#include<assert.h>

int main(){
  char a;

  //memset(a, 0, 2);
  //for(int i=0; i<2; i++)
    assert(a == 0);
}
