var atleastTwo = function(x){return function(){return Math.max(2,x);}
var atLeastTwo = (x) => (() => Math.max(2, x))
const atLeastTwo = x => Math.max(2,x)
const atLeastTwo = x => () => Math.max(2, x);