using System;
public class CongHaiSo
{
public static void Main(string[]args)
int M, H, T;
Console.Write("Nhap gia tri mot:");
M = int.Parse(Console.ReadLine());
Console.Write("Nhap gia tri hai:");
H = int.Parse(Console.ReadLine());
T= M+H;
C
}