#include <stdio.h>

int main() {
    char s="hello";
    char *str="welcome";
    printf("%s\n",s);
    printf("%s",str);
    
    
    
    return 0;
}