Guest User

Untitled

a guest
Jan 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5.  
  6. package spoj;
  7. import java.util.Scanner;
  8. /**
  9.  *
  10.  * @author Yoga
  11.  */
  12. public class Main8 {
  13.     public static void main(String[] arg) {
  14.         Scanner sc = new Scanner(System.in);
  15.         String input1 = sc.nextLine();
  16.         String input2 = sc.nextLine();
  17.         Bilangan bil1 = new Bilangan(input1);
  18.         Bilangan bil2 = new Bilangan(input2);
  19.         bil1.Add(bil2);
  20.   }
  21. }
Add Comment
Please, Sign In to add comment