#include <stdio.h>
#include <locale.h>

int main(){

setlocale(LC_ALL,"Turkish"); 

printf("İ ş ğ ü ö ı");

system("pause");
return 0;
}