package com.zetcode.utils; public class MathUtils { public static int sum(int x, int y, int z) { return x + y + z; } }