Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class InputInteger
- {
- public static void main(String[]args)
- {
- int a,b,c;
- Scanner I_Integer = new Scanner(System.in);
- System.out.print("Masukan Bilangan\n");
- a = I_Integer.nextInt();
- b = I_Integer.nextInt();
- c= a+b;
- System.out.println(c);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment