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