fork download
  1. print('國立台南藝術大學')
  2. print 2**15
  3. print 55*66
  4.  
  5. for n in [7,1,1,1,0,2,2,3]:
  6. print(n)
  7.  
  8.  
  9. for e in ['Lai', 'Miao', 'Hua']:
  10. print(e)
  11.  
  12.  
  13. for s in 'hello':
  14. print(s)# your code goes here
Success #stdin #stdout 0.02s 7056KB
stdin
Standard input is empty
stdout
國立台南藝術大學
32768
3630
7
1
1
1
0
2
2
3
Lai
Miao
Hua
h
e
l
l
o