#JavaScript Development
##Curriculum development, launch plan and pilot strategy
Mehan Jayasuriya and Jeanny Vaidya
##Value Prop
#JavaScript Development
##Curriculum development, launch plan and pilot strategy
Mehan Jayasuriya and Jeanny Vaidya
##Value Prop
#JavaScript Development
##Curriculum development, launch plan and pilot strategy
Mehan Jayasuriya and Jeanny Vaidya
##Value Prop
| import sys | |
| import random | |
| all_lines = list() | |
| searchstr = " I " | |
| for line in sys.stdin: | |
| if searchstr in line: | |
| line = line.strip() | |
| all_lines.append(line) |