#include <iostream>
#include <algorithm>
#include <cctype>
using namespace std;

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

    transform(text.begin(), text.end(), text.begin(), ::toupper);

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