Quick

Welcome to Hexo! This is your very first post. Check.

1
2
3
4
5
6
#include <stdio.h>
int main(void)
{
printf("Hello, World! \n");
return 0;
}
1
2
3
4
5
6
#include<iostream>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
}