Guest User

Untitled

a guest
Apr 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. print('Server XP Calculator')
  2.  
  3. core = int(input('Put amount of Core available: '))
  4. fw = int(input('Put the amount of FireWall available: '))
  5. av = int(input('Put the amount of Antivirus available: '))
  6.  
  7. core = core * 120
  8. fw = fw * 120
  9. av = av * 80
  10. total = core + av + fw
  11.  
  12. print('Amount of XP with Core:',core)
  13. print('Amount of XP with FireWall:',fw)
  14. print('Amount of XP with Antivirus:',av)
  15. print('Total amount of XP you will receive:',total)
Add Comment
Please, Sign In to add comment