3 solutions

  • 1
    @ 2026-2-23 11:26:39
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int m;
        cin>>m;
        cout<<m/13<<endl<<m%13;
        return 0;
    }
    
    
    • 0
      @ 2026-1-25 14:12:45
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int a;
          cin>>a;
          cout<<a/13<<endl<<a%13;
      }
      
      • -2
        @ 2025-11-27 11:54:18

        C++ :

        #include<bits/stdc++.h>
        using namespace std;
        int main(){
            int m;
            cin>>m;
            cout<<m/13<<endl<<m%13;
            return 0;
        }
        
        • 1

        Information

        ID
        23
        Time
        1000ms
        Memory
        128MiB
        Difficulty
        6
        Tags
        # Submissions
        18
        Accepted
        13
        Uploaded By