// For normal float division: print(5/2); // For integer division: print(5~/2); // For getting the remain: print(5%2);