class Solution { public int solution(int[] numbers) { int ans = 0; for(int i :numbers) ans+=i; return 45-ans; } }