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