17 lines
135 B
C#
17 lines
135 B
C#
using System;
|
|
|
|
public class Ex {
|
|
|
|
public static int Main () {
|
|
|
|
try {
|
|
throw null;
|
|
} catch {
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
|