12 lines
221 B
C#
12 lines
221 B
C#
|
|
using System;
|
||
|
|
using System.IO;
|
||
|
|
|
||
|
|
class Program
|
||
|
|
{
|
||
|
|
static void Main(string[] args)
|
||
|
|
{
|
||
|
|
Console.WriteLine(new FileInfo("/input.txt").Length);
|
||
|
|
Console.WriteLine(new FileInfo("input.txt").Length);
|
||
|
|
}
|
||
|
|
}
|