function Main(input) { // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。 var data = input.split("\n") const str = data[0] const res = [] for (var i = 0; i < str.length; i++) { const c = str.charCodeAt(i) if (c >= 65 && c <= 90) { res.push(str.charAt(i).toLowerCase()) } else { res.push(str.charAt(i).toUpperCase()) } } console.log(res.join('')) } // Don't edit this line! Main(require("fs").readFileSync("/dev/stdin", "utf8"));