// Declares a string without CS50 Library
#include <stdio.h>
int main(void)
{
char *s = "HI!";
printf("%s\n", s);
}