#include <iostream>

using namespace std;

int main()
{
    /*
    #define toupper tolower
    */
    cout << (char)toupper('A') << endl;

    #define toupper tolower
    cout << (char)toupper('A') << endl;
    
    return 0;
}