fork download
  1.  
  2. class Gema
  3. {
  4. public static void main (String[] args) throws java.lang.Exception
  5. {
  6. int myNum = 3;
  7. System.out.println(myNum);
  8. }
  9. }
Success #stdin #stdout 0.09s 42712KB
stdin
class Gema
{
	public static void main (String[] args) throws java.lang.Exception
	{
		int myNum = 3;
		System.out.println(myNum);
	}
}
stdout
3