Quick actions

cmd+k|ctrl+k

Navigation

Languages

input_function

Snippet info

Language

Python

Visibility

public

Author

019ffe01-e910-73f4-9aa3-5212403de3f4

Created

2026-08-21T23:19:18.251048Z

Updated

2026-08-21T23:19:18.251048Z



# FYI: MUST enter your input data before executing your code.

print("Hello World!")
name = input('What is your name? ')
print("So, your name is " + name + "?")

num1 = input("Enter an integer: ")

num2 = input("Enter another integer: ")

print(num1 + num2)
INFO