/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package scanner;
import java.util.Scanner;
/**
*
* @author ANGGA
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.print(“Masukkan Nama : “);
Scanner data=new Scanner(System.in);
String aku = data.nextLine();
System.out.println(“Nama kamu : “+aku);
System.out.print(“Masukkan N.I.M : “);
long nim = data.nextLong();
System.out.println(“N.I.M “+aku+” : “+nim);
}
}