“Programa de Python para agregar dos números” Código de respuesta

Programa de Python para agregar dos números

#create two variable to store the user input number
num1 = int(input('Enter the first number: '))
num2 = int(input('Enter the second number: '))
#create a third variable to store the sum of two no.s
sum = num1 + num2
print('The sum of two entered numbers is:', sum)
Enchanting Eel

Suma de 2 números en Python

a = int(input("Enter first number:"))
b = int(input("Enter second number:"))
sum = a+b
print(sum)
Easy Earthworm

Cómo agregar dos números en Python

num1 = int(input('any number'))
num2 = int(input('any number'))
print(sum(num1,num2))
Homeless Hamster

Cómo agregar en Python

a = int(input())
b = int(input())
s = a+b
print(S)
Prickly Penguin

Escribe un programa simple de Python que agrega 2 números Togethe

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Users\USER>python
Python 3.8.10 (tags/v3.8.10:3d8993a, May  3 2021, 11:34:34) [MSC v.1928 32 bit (
Intel)] on win32
>>> x = 5
>>> y = 10
>>> print(x + y)
15
Tejumola Olaniyan

Python de agregar dos números

a = int(input("Enter Teh value of a: "))
b = int(input("Enter The value of b: "))

sum = a+b
print(sum)
Smoggy Swan

Respuestas similares a “Programa de Python para agregar dos números”

Preguntas similares a “Programa de Python para agregar dos números”

Más respuestas relacionadas con “Programa de Python para agregar dos números” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código