ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1000. A+B Problem

help me with c# problem 1000
Posted by Konstantin 7 Mar 2007 21:30
i can not understud why my program get crash.
But on my computer it works!
this is the source code:
////////////////////////////////////
using System;

class MAIN
{
    public static int Main()
    {
        int a, b;
        a = Int32.Parse(Console.ReadLine());
        b = Int32.Parse(Console.ReadLine());

        Console.WriteLine(a+b);
        return 0;
    }
}
/////////////////////////////