public class Modulus { public static void main(String[] args) { int x =5, y = 10; System.out.println(x%y); } }