7 lines
78 B
Text
7 lines
78 B
Text
#charset utf8
|
|
void main()
|
|
{
|
|
int Δ = 1;
|
|
Δ++;
|
|
write( Δ +"\n");
|
|
}
|