import std.stdio; import std.string, std.conv, std.array, std.algorithm; import std.uni; void main(){ auto S = readln.chomp; string ans = ""; foreach(c;S){ if(c.isUpper) ans ~= c.toLower; else ans ~= c.toUpper; } ans.writeln; }