public class Demo09 {
public static void main(String[] args) {
int a = 56, b = 6, c = 78, d = 4, e = -34, f = 5, g = -5, h = 1;
System.out.println(a % b);
System.out.println(c % d);
System.out.println(e % f);
System.out.println(e % g);
System.out.println(f % h);
System.out.println(h % f);
}
}