blob: b7876ec143c42c337ba166884b8a02bba3f8e3ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
import java.io.*;
class cancer {
public static void main(String args[]) throws Exception {
StreamTokenizer st = new StreamTokenizer(System.in);
int inst=0;
while(42==42) {
inst++;
}
}
}
|