10 lines
119 B
C#
10 lines
119 B
C#
|
using System;
|
||
|
using System.IO;
|
||
|
|
||
|
class X {
|
||
|
static int Main ()
|
||
|
{
|
||
|
return Directory.Exists ("") == false ? 0 : 1;
|
||
|
}
|
||
|
}
|