public class report2_2{ public static void main (String[] args){ int a=17; int b=5; int c; c=a-(a/b)*b; System.out.println("c=a%b="+c); } }