fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. cout << " LOGIN \n";
  8. cout << "╔════════════════════════════╗" << endl;
  9. cout << "║ 1. Student ║" << endl;
  10. cout << "║ 2. Admin ║" << endl;
  11. cout << "╚════════════════════════════╝" << endl;
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
                LOGIN    
╔════════════════════════════╗
║         1. Student         ║
║         2. Admin           ║
╚════════════════════════════╝