//Title of this code
//g++  4.9.2

#include <iostream>
using namespace std;
int main()
{
    cout << sizeof(char) << endl ;
    cout << sizeof(char*) << endl ;
}