From 50d4ad8387d7bab858746e2926371be03b7c6dfe Mon Sep 17 00:00:00 2001 From: utkarshchauhan007 <61346045+utkarshchauhan007@users.noreply.github.com> Date: Thu, 20 Oct 2022 17:48:30 +0530 Subject: [PATCH 1/2] Update --- 104A - Blackjack.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/104A - Blackjack.cpp b/104A - Blackjack.cpp index 5bfdfed..4c0e088 100644 --- a/104A - Blackjack.cpp +++ b/104A - Blackjack.cpp @@ -1,10 +1,12 @@ //4055407 Jul 12, 2013 6:41:00 PM fuwutu 104A - Blackjack GNU C++0x Accepted 15 ms 0 KB -#include +#include using namespace std; int main() { + ios_base::sync_with_stdio(NULL) ; + cin.tie(NULL) ; int n; cin >> n; if (n <= 10 || n > 21) From 8ea6f3347031efc22416c3e7d9e3e89e2b0bcc0c Mon Sep 17 00:00:00 2001 From: utkarshchauhan007 <61346045+utkarshchauhan007@users.noreply.github.com> Date: Thu, 20 Oct 2022 17:49:20 +0530 Subject: [PATCH 2/2] Update --- 116A - Tram.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/116A - Tram.cpp b/116A - Tram.cpp index ab1657e..06285ac 100644 --- a/116A - Tram.cpp +++ b/116A - Tram.cpp @@ -1,5 +1,5 @@ //4006879 Jul 3, 2013 5:53:08 PM fuwutu 116A - Tram GNU C++0x Accepted 15 ms 0 KB -#include +#include int main() {