[ create a new paste ] login | about

Link: http://codepad.org/vANozcKj    [ raw code | output | fork ]

C++, pasted on Sep 12:
1
2
3
4
5
6
7
8
9
10
#include <iostream>

using namespace std;

int main()
{
    cout << "Wello, world!" << endl;
    cout << "안녕하세요?" << endl;
    return 0;
}


Output:
1
2
Wello, world!
안녕하세요?


Create a new paste based on this one


Comments: