- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarksheet.py
More file actions
Latest commit
25 lines (18 loc) · 474 Bytes
/
Copy pathmarksheet.py
File metadata and controls
25 lines (18 loc) · 474 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Hindi=input ()
English=input ()
Maths=input ()
Environment=input ()
Science=input ()
print"Hindi %i"%Hindi
print"English %i"%English
print"Maths %i"%Maths
print"Environment %i"%Environment
print"Science %i"%Science
total_number=Hindi+English+Maths+Environment+Science
print"total_number %i"%total_number
total_per=total_number*100/500
print (total_per)
iftotal_per<60:
print"you are fail"
else:
print"you are pass"