#include <iostream>
using namespace std;

string toUpperCase(const string &text) {
    string result = text;
    for (int i = 0; i < result.length(); i++) {
        if (result[i] >= 'a' && result[i] <= 'z') {
            result[i] = result[i] - ('a' - 'A');
        }
    }
    return result;
}

int main() {
    string text;
    cout << "لطفا یک رشته وارد کنید: ";
    getline(cin, text);

    cout << "رشته تبدیل شده: " << toUpperCase(text) << endl;
    return 0;
}