Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    private static final int default_value = -219939611;

    private static long safeParseLong(String s) {
        try {
            return Long.parseLong(s);
        } catch (Exception e) {
            return default_value;
        }
    }
}