#include <iostream>

int main( ){

    char c1 = 'x', c2;
    int i1 = c1 , i2 = 'x';

    c2 = i1;

    std::cout << c1 << ' ' << i1 << ' ' << c2 <<'\n';

}