Skip to content

Instantly share code, notes, and snippets.

@Svastikkka
Created August 20, 2020 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Svastikkka/c5277767eba96e2bc7859cee544edc53 to your computer and use it in GitHub Desktop.
Save Svastikkka/c5277767eba96e2bc7859cee544edc53 to your computer and use it in GitHub Desktop.
h=int(input())
m=int(input())
s=int(input())
a=input()
if a=="AM":
print(3600*h+m*60+s)
else:
print(3600*(h+12)+m*60+s)
@Svastikkka
Copy link
Author

  1. Clock Seconds

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment