#!/usr/bin/env python
# coding=utf-8
import sys
skills = ['Graduated in process automation','EPLAN specialist','Tech blogger']
if __name__ == '__main__':
while True:
try:
print('Hello world!')
print('My name is Sebastian Köhler.')
for i in skills:
print('• ' + i)
except KeyboardInterrupt:
print('bye bye')
sys.exit(0)