In Java, we can divide two positive integers and round up as follows:
int result = (x + y - 1) / y
Example: (4/3 = 1.33 and we want 2):
long result = (4 + 3 - 1) / 3; // 2