Problem
Write a function called big consonants that takes a string as its only parameter. The function should return a modified version of the input string in which letters appear in the same order, but consonants are uppercase. As an example, big consonants('schtschurowskia') should return 'SCHTSCHuRoWSKia'. You can assume that the input is written in lowercase.