import java.util.*;
public class SmithPayment {
public static void main(String[] args) {
int P,I,N,n,k;
double i,M;
I=0;
N=0;
k=1;
Scanner stdin = new Scanner(System.in);
System.out.println("Please enter the Principal: ");
P = stdin.nextInt();
System.out.println("Please enter the Interest Rates: ");
I = stdin.nextInt();
System.out.println("Please enter the Number of years: ");
N = stdin.nextInt();
import java.util.*;
public class SmithPayment {
public static void main(String[] args) {
int P,N,n,k;
double i,M,I,InputI;
N=0;
k=1;
Scanner stdin = new Scanner(System.in);
System.out.println("Please enter the Principal: ");
P = stdin.nextInt();
System.out.println("Please enter the Interest Rates: ");
InputI = stdin.nextInt();
I=InputI/100;
i = I/12;
System.out.println("Please enter the Number of years: ");
N = stdin.nextInt();