#include <stdio.h>
// This is a comment
/* This is multi lines comments
blah..
blah..
*/
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
// Variables
int myNum = 15;
printf("%d",myNum);
return 0;
}