15 lines
198 B
C
15 lines
198 B
C
|
//#include <QCoreApplication>
|
||
|
#include <stdio.h>
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
|
||
|
printf("Hello world by me\n");
|
||
|
cout<<"Hello world by me"<<endl;
|
||
|
return 0;
|
||
|
}
|
||
|
|