fix: replace using namespace std with std::cin and std::cout

This commit is contained in:
realstealthninja
2024-10-01 22:16:07 +05:30
parent cf96959b95
commit 7ca7b5863b

View File

@@ -1,5 +1,6 @@
#include <iostream>
using namespace std;
using std::cin;
using std::cout;
int queue[10];
int front = 0;