#include <stdio.h>

int main(){
    printf("%s\n",'c');
    printf("%s\n","c");
    
    // What is the difference between single quote and double quote?
    // single quote represents one character only
    // double quote represents a string which consists of many characters
    
    
    int pause;    
    scanf("%d",&pause);
    return 0;   
}

