using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Teso_API.Models { public class RedemptionReturn { public static int CalculateReturns(int cost) { double result = cost / 2; return (int)Math.Ceiling(result); } } }