50,488 views
2 votes
2 votes
What will be the result from running the following program?

print("Grades")
print(100)
print(93)
print(82)
print("Total")
print(100+93+82)

User Adamwtiko
by
2.3k points

1 Answer

15 votes
15 votes

Answer:

If this is python

then you will get this from console:

Grades
100
93

82

Total
275

User Geeekfa
by
2.7k points