namespace std

This commit is contained in:
qwertyw 2024-10-11 11:54:28 +00:00
parent 9c9949721a
commit 58372e30a4

View File

@ -1,8 +1,9 @@
#include <iostream>
int main()
{
std::cout<<"Hello World";
return 0;
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello World";
return 0;
}