Computer Science, asked by naman1319, 8 months ago

Write the output of the program given below - x = 5 y = "John" print(x) print(y)

Answers

Answered by imtiyazallam
3

Answer:

x = 5

y = "John"

print(x)

print(y)

Output:

5

John

Attachments:
Similar questions