Submission #1591409


Source Code Expand

#include <iostream>
using namespace std;

int main(int argc, const char * argv[]) {
    long x, y;
    cin >> x >> y;
    
    int n;
    n = y /x
    
    cout << n;
    return 0;
}

Submission Info

Submission Time
Task A - おいしいたこ焼きの作り方
User ykanebako
Language C++14 (GCC 5.4.1)
Score 0
Code Size 196 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main(int, const char**)’:
./Main.cpp:11:5: error: expected ‘;’ before ‘cout’
     cout << n;
     ^