Kattis Problem: Faktor

Problem Link:

https://open.kattis.com/problems/faktor

Sample Solution

import java.util.Scanner;
public class Faktor {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt(), i = sc.nextInt();
        int x = a * i;
        while (((double) –x / a) > i – 1) {
        }
        System.out.println(++x);
    }
}