Skip to content

Instantly share code, notes, and snippets.

@TranNgocMinh
Created February 4, 2018 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TranNgocMinh/93bbfe7ae0f827698606049de68cb1a1 to your computer and use it in GitHub Desktop.
Save TranNgocMinh/93bbfe7ae0f827698606049de68cb1a1 to your computer and use it in GitHub Desktop.
Console.WriteLine("Nhap so thu nhat:");
int val1 = int.Parse(Console.ReadLine());
Console.WriteLine("Nhap so thu hai:");
int val2 = int.Parse(Console.ReadLine());
int Total = val1 + val2;
Console.WriteLine("Tong là:" + Total);
Console.ReadKey();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment