fork download
  1. using System;
  2. public class Test
  3. {
  4. public static void Main()
  5. {
  6. int n=10;
  7. n*=n+=n-=n/=n;
  8. Console.WriteLine(n);
  9. TestA();
  10. }
  11.  
  12. public static void TestA(){
  13. TestA();
  14. }
  15.  
  16. }
Runtime error #stdin #stdout 0.28s 47544KB
stdin
1
2
10
42
11
stdout
190