#include "stdafx.h"
#include <iostream>
using namespace std;
int main ()
{
int a, b, c;
cout << "š";
cin >> a;
cout << "Č";
cin >> b;
c = a+ b;
cout << "Ć" << c << endl;
return 0;
}
So i tried using characters from my own language such as: š,Č,Ć
But they don't work, and i know that I have to add something to make it work.
Can someone please help me with this?