Code Highlighter And Copier

Input

Language

output

function max(a, b) {
	if(a > b) {
		return a
	}
	return b
}