█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 5212

Problema 0x78 - Suma de 2 números

  • Autor: Mejibyte
  • Fecha: 2021-10-28 00:49:18 UTC (Hace más de 2 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.035 s 8 KBi
#2
Correcto
0.032 s 3 KBi
#3
Correcto
0.023 s 17 KBi
#4
Correcto
0.032 s 3 KBi
#5
Correcto
0.033 s 5 KBi
Puntos totales: 100 / 100

Código

using System;
					
public class Program
{
	public static void Main()
	{
		string line = Console.ReadLine();
		string[] parts = line.Split(' ');
		
		int x = Int32.Parse(parts[0]);
		int y = Int32.Parse(parts[1]);
		
		Console.WriteLine(x + y);
	}
}