7 lines
105 B
C++
7 lines
105 B
C++
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << static_cast<char>(163); // pound sign
|
|
return 0;
|
|
}
|