#include <stdio.h> int main(){ int i; for(i = 0; i < 1024*1024*128; i++) { putchar('a'); putchar('n'); } while(1) ; return 0;}