信奥赛题1001:Hello,World!

这个题实在是太简单的了,无法比喻,直接付代码!

//c++
#include<bits/stdc++.h>
using namespace std; int main()
{
cout<<"Hello,World!";
return 0;
}
/*c*/
#include<stdio.h>
using namespace std; int main()
{
printf("Hello,World!");
return 0;
}

music不能少