1 nap(int n) 2 { 3 register i; 4 5 while(n-- > 0){ 6 for(i = 0; i < 1000*1000*10; i++) 7 ; 8 } 9 } 10