From ec7fdfbd99130bcdeda2d79925bfca01de7b99f4 Mon Sep 17 00:00:00 2001 From: Shreya <52084473+sshreya2912@users.noreply.github.com> Date: Thu, 1 Oct 2020 19:07:17 +0530 Subject: [PATCH] Update 365-Mishka_and_Game.cpp //Saving complexity --- codeforces/365-Mishka_and_Game.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/codeforces/365-Mishka_and_Game.cpp b/codeforces/365-Mishka_and_Game.cpp index 8f90387..87b6132 100644 --- a/codeforces/365-Mishka_and_Game.cpp +++ b/codeforces/365-Mishka_and_Game.cpp @@ -20,11 +20,11 @@ int main() } if(mishka > chris) - cout << "Mishka" << endl; + cout << "Mishka" << "\n"; else if(chris > mishka) - cout << "Chris" << endl; + cout << "Chris" << "\n"; else - cout << "Friendship is magic!^^" << endl; + cout << "Friendship is magic!^^" << "\n"; return 0; -} \ No newline at end of file +}