fork download
  1.  
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. class test{
  8. int a=10;
  9. public static void main(String [] args){
  10. test t= new test();
  11. System.out.println("a:"+t.a);
  12.  
  13. }
  14. }
Success #stdin #stdout 0.05s 4386816KB
stdin
Standard input is empty
stdout
a:10