This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Sumit Mittal", | |
"label": "Principal Engineer", | |
"picture": "https://avatars2.githubusercontent.com/u/14886385?s=400&u=7b3c1d45d68ad760ebaafa0c5acc70ec8647edcd&v=4", | |
"summary": "With 17+ years of experience, I bring extensive expertise in development and test automation across AI observability, API security, distributed systems, and data networks. I'm skilled in using cloud technologies like AWS, k8s and proficient in Python, Golang, and Perl. I excel at building teams from scratch and providing technical leadership to deliver high-quality software solutions.", | |
"email": "stylosumit@gmail.com", | |
"phone": "+91 9720077104", | |
"location": { | |
"city": "Bengaluru", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input = int(raw_input()) | |
if( input % 2 == 0 ): | |
print input, " is even" | |
else : | |
print input, " is odd" | |