import java.util.Scanner; public class Main { public static void main(String[] args) { //入力文字をの読み取り Scanner sc = new Scanner(System.in); //1文字目 int a = sc.nextInt(); //2文字目 int b = sc.nextInt(); //3文字目 int c = sc.nextInt(); //4文字目 int d = sc.nextInt(); //現在所持金からの5円硬貨を算出 int result = (a*b/c)%d; //出力 System.out.println(result); } }