美文网首页
2022年5月2日ACM

2022年5月2日ACM

作者: Seki_Etsu | 来源:发表于2022-05-03 13:20 被阅读0次

    import java.util.Scanner;
    import java.math.BigInteger;
    public class Main {

    public static void main(String[] args) {
        start();
    }
    
    private static void start() {
        method();
    }
    
    private static BigInteger add(BigInteger x,BigInteger y) {
        return x.add(y);    
    }
    
    private static void method() {
        try {
            Scanner scanner = new Scanner(System.in);
            
            BigInteger first = scanner.nextBigInteger();
            BigInteger second = scanner.nextBigInteger();
    
            System.out.print(add(first, second));
        } catch (Exception e) {
            // TODO: handle exception
            System.out.print(e);
        }
        
    }
    

    }

    相关文章

      网友评论

          本文标题:2022年5月2日ACM

          本文链接:https://www.haomeiwen.com/subject/yaiwyrtx.html