8 lines
172 B
C++
8 lines
172 B
C++
|
|
#include <iostream> //compiled with "Dev-C++" , from RaptorOne
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
for(int i=1; i*i<=100; i++)
|
||
|
|
std::cout<<"Door "<<i*i<<" is open!"<<std::endl;
|
||
|
|
}
|