import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(sc.hasNext()){ BigInteger n = new BigInteger (sc.next()); BigInteger m =new BigInteger (sc.nextInt()+""); System.out.println( n.remainder(m)); } } }
0.0分
1 人评分