blob: 482b5154ddbd10ff2038d679a4652a2cdccb92f6 (
plain)
1
2
3
4
5
6
7
8
|
try:
print(int(input()))
except Exception:
raise
except TypeError: # [bad-except-order]
# This block cannot be reached since TypeError exception
# is caught by previous exception handler.
raise
|