aboutsummaryrefslogtreecommitdiff
path: root/doc/tests/fontes/bits-timelimit.java
blob: 4330bb314f0347c56a0f6476e6f8b138671be770 (plain)
1
2
3
4
5
6
7
8
9
10
import java.io.*;
class bits {
  public static void main(String args[]) throws Exception {
    StreamTokenizer st = new StreamTokenizer(System.in);
    int inst=0;
    while(42==42) {
      inst++;
    }
  }
}