90.1k views
20 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 Donato
by
5.8k points

1 Answer

6 votes

Answer:

If this is python

then you will get this from console:

Grades
100
93

82

Total
275

User Antred
by
5.6k points