Home About
About
Cancel

About

Hello World !!!

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

int main()
{
    std::string yourName = "Hai Nguyen";
    std::string nickname = "nth2579";
    std::string yourSchool = "HCMC University of Technology (Hu Tet)"
    std::string interested_in[] = {"Takewondo", "RE malware for fun", "CTF"};
    std::string looking_for_job = "In HCMC area";
    std::string email_contact = "thanhhainguyen31337@gmail.com";
    std::cout << "Thanks for reading <3";
    return 0;
}